嗨,任何人都可以帮我解决这个问题,我花了整个晚上但无法让它工作:(这是我的 web.xml
<security-constraint>
<web-resource-collection>
<web-resource-name>Welcome</web-resource-name>
<description>Accersible by authorized user only</description>
<url-pattern>/Welcome.jsp</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>member</role-name>
<role-name>manager</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>
<login-config>
<auth-method>FORM</auth-method>
<form-login-config>
<form-login-page>/Login.jsp</form-login-page>
<form-error-page>/wrongUser.jsp</form-error-page>
</form-login-config>
</login-config>
当我输入一个磨损的用户名或密码时,它会导致错误的User.jsp(它必须连接到数据库),但是如果我输入正确的用户名和密码,它会显示: message Invalid direct reference to form login page description The request sent客户端在语法上不正确(对表单登录页面的直接引用无效)。
有人知道它有什么问题吗?提前致谢