层次结构:
WEB-INF / JSP
WEB-INF / styles
我在JSP文件中链接样式表,该文件位于WEB-INF / jsp:
中 <link rel="stylesheet" type="text/css" href="../styles/reset.css" />
但它不起作用! 当我打开我的应用程序时,没有样式和Tomcat的写作:
<html><head><title>Apache Tomcat/7.0.14 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The requested resource () is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.14</h3></body></html>
我怎样才能克服它?
我的项目: http://img835.imageshack.us/img835/6159/73536381.jpg
我正在使用spring framework 3。 我把我的文件夹与WEB-INF之外的样式和图像放在一起,但它仍然不起作用。 我写的是我的jsp文件:
<link rel="stylesheet" type="text/css" href="resources/styles/styles.css" />
它不起作用......
答案 0 :(得分:2)
我找到了http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/mvc.html#mvc-static-resources 所以现在我的rus-servlet.xml看起来像这样:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<context:component-scan base-package="rus.web"/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
<mvc:annotation-driven/>
<mvc:resources mapping="/resources/**" location="/resources/"/>
</beans>
但是这在JSP中仍然不起作用!
<link rel="stylesheet" type="text/css" href="resources/styles/styles.css" />
我有我的spring框架的3.0.5版本。
答案 1 :(得分:1)
存储在WEB-INF中的所有文件有时对外部是不可见的。因此,指向WEB-INF / something的URL将始终生成404.WEB-INF用于存储应用程序所需的资源,但必须保持对外部不可见。
将CSS文件放在WEB-INF之外。
答案 2 :(得分:0)
默认情况下,Tomcat不会从WEB-INF /提供静态文件,将css提升到一个级别,因此css为“./styles/some.css”。既然您在WEB-INF / jsp中有JSP,我假设您使用的是JSF或其他一些架构框架?