1

I want to ask why my external css/js was not load in my jsp. My struts.xml content :

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
 "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
  "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<constant name="struts.enable.DynamicMethodInvocation" value="false" />
<constant name="struts.devMode" value="true" />
<constant name="struts.action.extension" value=""/> 

<package name="default" namespace="/" extends="struts-default">

    <default-action-ref name="home" />

    <action name="home">
        <result name="success">index.jsp</result>
    </action>

</package>  

</struts>

My web.xml content :

<?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_2_5.xsd"
       version="2.5">

<display-name>Test</display-name>
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
</context-param>

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener> 

<filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

<error-page>
    <error-code>404</error-code>
    <location>error404.jsp</location>
</error-page>

</web-app>

I load my css in my jsp using this code

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

I also try use this code

<link rel="stylesheet" type="text/css" href="<s:url value="/style/css/style.css"/>"/>

even, it's get error when I want to display an image on my jsp

<img src="<s:url value="/style/images/icon/car.png"/>" />

What wrong with this, whether cause of this code (web.xml)

<filter-mapping>
   <filter-name>struts2</filter-name>
   <url-pattern>/*</url-pattern>
</filter-mapping>

Thank you for your response.

4

4 回答 4

2

原来只是因为我的 struts.xml 中有这段代码

<constant name="struts.action.extension" value=""/> 

当我删除它时,一切正常。对不起,谢谢你

于 2012-08-14T09:51:12.560 回答
0

您的外部文件夹不在网络服务器的根目录中;所以它不认识它,那么你必须添加它

于 2013-10-09T15:48:16.230 回答
0

这肯定是路径问题。您可以使用 Firebug with Network 查看浏览器尝试加载的确切 URL。之后,您将能够更正 css URL。当然,您不能在现场使用标签。

于 2012-08-13T05:12:12.400 回答
0

你的过滤器阻止了那些图片,CSS

于 2013-09-18T06:50:47.590 回答