mvn tomcat:运行时不接收css文件

时间:2011-10-20 16:00:55

标签: css spring tomcat maven-2

我在这个帖子Where to put css resources in a maven project

中提出了另一个与此相关的问题

认为我没有将css资源放在Maven项目结构中的正确位置。现在我在webapp下有一个名为 css 的文件夹,我有css资源。我的问题是,当我mvn clean tomcat:run时,这些css资源似乎没有被拾取并正确放入目标文件夹中,因此我的应用程序无法接收它们。

有人知道为什么吗?

更新

我的目标是避免在部署时为快速开发构建战争。我已将我的Maven命令更改为:mvn clean war:exploded tomcat:run

应用程序运行正常,但css没有被提取。如果我转到浏览器并输入:http://localhost:8080/appname/css/styles.css

我收到一个Spring Framework错误,在DispatcherServlet

中说No mapping found for HTTP request with URI [/appname/css/styles.css

在我使用传统项目风格(而不是maven)构建的其他Spring Java应用程序中,我能够使用上面的url从borwser访问css。我确保css文件夹直接悬挂在webapp文件夹中。

有什么想法吗?

更新:添加web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 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">

<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring/root-context.xml
                 classpath*:META-INF/spring/applicationContext*.xml                  
    </param-value>
</context-param>

<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- 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-mapping>
    <servlet-name>appServlet</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

我没有将Dispatcher servlet映射到/ *,它仍然尝试通过DispatcherServlet访问CSS文件。

2 个答案:

答案 0 :(得分:3)

tomcat:run使用src文件夹,而不是target。您的css个文件位于src/main/webapp/css的好位置。它们应该可以从浏览器中获得。

mvn -X tomcat:run打印配置。一些有趣的部分:

[INFO] Preparing tomcat:run
[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false, 
    FileSet {directory: /workspace/webtest1/src/main/resources, 
    PatternSet [includes: {}, excludes: {}]}}]
...
[DEBUG] (f) warSourceDirectory = /workspace/webtest1/src/main/webapp

您可以在此答案中找到更多详细信息:mvn tomcat7:run - How does it work?

对于第二个问题/更新:我认为您将Spring servlet映射到/*并且它不处理静态内容。发布您的web.xml和Spring配置。也许你只需要mvc:resources进入你的Spring配置。这也很有用:How to handle static content in Spring MVC?

答案 1 :(得分:3)

只是为了澄清这是我必须要做的事情:

  1. 确保您的 servlet-context.xml 具有以下内容:

    <resources mapping="/resources/**" location="/resources/" /> 
    
  2. 如果在名为资源

  3. 的webapps下尚不存在,请创建一个文件夹
  4. css 文件夹与css文件一起放在

  5. 引用我的css文件如下:

    <link rel="stylesheet" href="<%=request.getContextPath()%>/resources/css/960.css"/>