我有一个带有struts2框架的Java Web应用程序。在我的index.jsp
文件中,我链接了CSS文件,但它没有显示在我的页面中,Error 404: not found
显示在Firebug
中。我测试了一个没有Struts的应用程序,一切都很好。但是当我添加struts2库和配置struts.xml
和web.xml
文件时,CSS不会显示:(
这是我的index.jsp:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="styles/main.css" rel="stylesheet" type="text/css"/>
</head>
当然,我添加<%@ taglib prefix="s" uri="/struts-tags" %>
并在href中尝试<s:url>
,但看不到任何效果。
这是web.xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<display-name>HotelSystem</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
这是我的struts.xml的一部分:
<package name="default" namespace="/" extends="struts-default">
<action name="index.jsp" class="Actions.Test">
<result name="success">/index.jsp</result>
</action>
</package>
注意: Action.Test
是一项测试操作,并始终返回SUCCESS。
答案 0 :(得分:0)
您应该将.css类型映射到web.xml文件中,如下所示!
<filter-mapping>
<filter-name>expires-filter</filter-name>
<url-pattern>*.css</url-pattern>
</filter-mapping>