在我的动态Web项目中添加JAAS后,我的JSP中的.css和.js文件出现问题。我在所有页面都有这个错误。 我无法理解,有什么问题?在添加JAAS配置之前一切都很好!但现在这是一个问题。请帮助! 这是我在Chrome中遇到的错误。
这是我的 login.jsp
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID" version="3.1">
<display-name>Autostation</display-name>
<welcome-file-list>
<welcome-file>login.jsp</welcome-file>
</welcome-file-list>
<resource-ref>
<description>Db</description>
<res-ref-name>jdbc/autopark</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
<security-constraint>
<web-resource-collection>
<web-resource-name>ADMIN</web-resource-name>
<url-pattern>/admin/*</url-pattern>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>ADMIN</role-name>
</auth-constraint>
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>DRIVER, DISPATCHER</web-resource-name>
<url-pattern>/</url-pattern>
<url-pattern>/trips/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>ADMIN</role-name>
</auth-constraint>
</security-constraint>
<security-role>
<role-name>DRIVER</role-name>
</security-role>
<security-role>
<role-name>DISPATCHER</role-name>
</security-role>
<security-role>
<role-name>ADMIN</role-name>
</security-role>
<login-config>
<auth-method>FORM</auth-method>
<form-login-config>
<form-login-page>/login.jsp</form-login-page>
<form-error-page>/error.html</form-error-page>
</form-login-config>
</login-config>
<session-config>
<session-timeout>30</session-timeout>
</session-config>
<listener>
<listener-class>ua.khpi.shapoval.listner.ContextListner</listener-class>
</listener>
</web-app>
这里是带有JAAS配置的 web.xml 文件
<h2>