gpt4 book ai didi

java - JSP 找不到样式表

转载 作者:行者123 更新时间:2023-11-29 06:11:35 24 4
gpt4 key购买 nike

层次结构:
WEB-INF/jsp
WEB-INF/样式

我在我的 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 框架 3。我已经将带有样式和图像的文件夹放在 WEB-INF 之外,但它仍然不起作用。我的jsp文件是这样写的:

<link rel="stylesheet" type="text/css" href="resources/styles/styles.css" />

而且它不起作用...

最佳答案

我找到了 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" />

我有 3.0.5 版的 spring 框架。

关于java - JSP 找不到样式表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6626689/

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