Tomcat7,spring framework3,jstl 1.2。 层次结构:WEB-INF / jsp WEB-INF / styles
我在我的JSP文件中链接样式表,该文件位于WEB-INF / jsp中:但是它不起作用!当我打开我的应用程序时,没有样式和Tomcat的写作:
Apache Tomcat/7.0.14 - Error report HTTP Status 404 - type Status report message description The requested resource () is not available. Apache Tomcat/7.0.14
所以我将我的样式文件夹放在WEB-INF之外,它仍然不起作用! 此外,图像也不起作用,但我的图像文件夹不在WEB-INF和他们的路径是核心... 有什么问题?
答案 0 :(得分:3)
在Spring中,我将资源放在web-inf之外的文件夹中。像这样:
Web.xml中
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
然后在我的servlet-context.xml(web.xml中指定的配置文件)文件中,我将资源目录排除在调度程序的管理之外,因此调度程序不会选择带有资源/前缀的URL,并尝试将其作为路由到适当的控制器。
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
在我的jsp中,我可以正常访问资源:
<link rel="stylesheet" type="text/css" href="/skillsmanager-ui/resources/css/reset.css" />