gpt4 book ai didi

java - 基于表单的身份验证 - 身份验证成功后重定向到错误页面 (Tomcat 7.0.4)

转载 作者:行者123 更新时间:2023-12-04 16:44:46 26 4
gpt4 key购买 nike

我正在尝试基于表单的身份验证,但我不明白为什么在登录页面上输入正确的用户/密码后,它会将我重定向到错误页面而不是 index.jsp

当我输入时:

http://localhost:8080/<context>/secure/index.jsp

我得到了登录页面。但是,当我键入用户/密码(经理/经理)时,它会将我带到 error.html 而不是 index.jsp

WEB.XML:

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>FormBasedAuthentication</display-name>
<login-config>
<auth-method>FORM</auth-method>
<form-login-config>
<form-login-page>/login.html</form-login-page>
<form-error-page>/error.html</form-error-page>
</form-login-config>
</login-config>
<security-role>
<role-name>role1</role-name>
</security-role>
<security-constraint>
<web-resource-collection>
<web-resource-name>SecurePages</web-resource-name>
<description>Security constraint for JSP resources</description>
<url-pattern>/secure/*</url-pattern>
<http-method>POST</http-method>
<http-method>GET</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>role1</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>

TOMCAT-USER.XML:

<tomcat-users>
<role rolename="manager-gui"/>
<role rolename="manager-script"/>
<role rolename="manager-status"/>
<role rolename="manager-jmx"/>
<role rolename="role1"/>
<user username="manager" password="manager" roles="role1"/>
</tomcat-users>

最佳答案

在成功的身份验证和对/secure/* 的请求之间发生了一些错误。例如,可能没有为特定的 HTTP 方法配置过滤器,或者 servlet 抛出异常,在这种情况下可能与身份验证失败相混淆。如果我是你,我会用临时 servlet(或 jsp:error.jsp)替换 error.html 来仔细检查有关失败原因的详细信息的请求。应检查这些请求属性:

Integer statusCode = (Integer) request.getAttribute("javax.servlet.error.status_code");
String exceptionType = (String) request.getAttribute("javax.servlet.error.exception_type");
String errorMsg = (String) request.getAttribute("javax.servlet.error.message");

关于java - 基于表单的身份验证 - 身份验证成功后重定向到错误页面 (Tomcat 7.0.4),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18984340/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com