java - Spring MVC 项目在 Eclipse 中部署到 Tomcat 时缺少图像和样式

标签 java eclipse spring-mvc

我在 Eclipse 中有一个 Spring MVC 项目。 Maven 将其打包为 WAR,然后通过 Eclipse 将其部署到 Tomcat。我遇到的问题是/webapp 文件夹中的 /images/styles/js 文件夹无法通过。该页面将生成并且 Spring MVC 功能将起作用(调用 Controller 等)。但是,不会出现任何样式。我将非常感谢任何帮助使其发挥作用。

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
    <display-name>Some Project</display-name>
    <context-param>
        <param-name>webAppRootKey</param-name>
        <param-value>some-project.root</param-value>
    </context-param>

    <listener>
        <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
    </listener>

    <servlet>
        <servlet-name>some-project</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>some-project</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <session-config>
        <session-timeout>60</session-timeout>
    </session-config>
</web-app>

some-project-servlet.xml

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans     
                           http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
                           http://www.springframework.org/schema/context 
                           http://www.springframework.org/schema/context/spring-context-4.0.xsd">

    <context:component-scan base-package="my.com.project.controllers" />

    <bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
        <property name="basename" value="classpath:messages" />
        <property name="cacheSeconds" value="60" />
    </bean>

   <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
        <property name="prefix" value="/WEB-INF/views/" />
        <property name="suffix" value=".jsp" />
    </bean>

    <!-- Need this to handle multipart files -->
    <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver" />

    <bean class="my.com.project.validators.SomeValidator" />
    <bean class="my.com.project.validators.OtherValidator" />
</beans>

pom.xml(部分内容

...
<packaging>war</packaging>
...
<!-- The Build -->
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.5.1</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.6</version>
            <configuration>
                <warName>some-project</warName>
                <archive>
                    <manifest>
                        <addClasspath>true</addClasspath>
                    </manifest>
                </archive>
            </configuration>
        </plugin>
    </plugins>
</build>
...
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>4.2.5.RELEASE</version>
</dependency>
<!-- using Hibernate 4.3.11.Final -->

JSP

<link rel="stylesheet" type="text/css" media="all" href="/styles/screen.css" />
<link rel="stylesheet" type="text/css" media="print" href="/styles/print.css" />
<link rel="stylesheet" type="text/css" href="/styles/jquery/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="/styles/roper-center.css">
<link rel="stylesheet" type="text/css" href="/styles/font-awesome-4.5.0/css/font-awesome.css">

<script src="js/modernizr.js"></script>
<script src="js/framework/iws.js"></script>
<script src="js/sorttable.js"></script>
<script src="js/jquery/jquery-1.12.2.min.js"></script>
<script src="js/jquery/external/jquery/jquery.js"></script>
<script src="js/jquery/jquery-ui.js"></script>
<script src="js/jquery/jquery.autotab.js"></script>

正如您在上面看到的,我尝试在样式之前放置 / ,但没有将它们放在“js”部分。我查看了该页面的页面源代码并单击了这两个页面的链接,但 Tomcat 返回说它也找不到。

如果我查看部署文件夹 (/opt/apache-tomcat-8.0.32/webapps/some-project),我会看到以下文件夹:

META-INF
WEB-INF
images
js
styles

这是我在 Eclipse 中的 webapp 文件夹:

webapps folder list

以防万一,这是我的部署程序集

enter image description here

最佳答案

我在 xml spring 配置方面没有太多经验。但是,当我查看一个项目时,我发现我的资源有以下配置。请注意,我的文件结构也与您的类似。

<mvc:resources mapping="/css/**" location="/css/" />
<mvc:resources mapping="/images/**" location="/images/" />
<mvc:resources location="/js/" mapping="/js/**" />
<mvc:annotation-driven />

我在声明我的 InternalResourceViewResolver 的同一个文件中拥有它。希望对您有所帮助。

<小时/> 完整文件:

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans     
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context.xsd">

    <context:component-scan base-package="my.app.package" />

    <!-- Internal (final) resolver -->
    <bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix">
            <value>/WEB-INF/jsp/</value>
        </property>
        <property name="suffix">
            <value>.jsp</value>
        </property>
        <property name="order">
            <value>4</value>
        </property>
    </bean>

    <mvc:resources mapping="/css/**" location="/css/" />
    <mvc:resources mapping="/images/**" location="/images/" />
    <mvc:resources location="/js/" mapping="/js/**" />
    <mvc:annotation-driven />

</beans>

关于java - Spring MVC 项目在 Eclipse 中部署到 Tomcat 时缺少图像和样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37016678/

相关文章:

java - 如何在 Spring MVC 2.5 中将 setCommandClass() 与 MultiActionController 一起使用

java删除JMenuBar

Eclipse 中的 android.support.v7.widget.Toolbar 无法实例化

java - Spring Security 4.2 不工作

Java 博客和论坛实现

java - Spring REST 调用在浏览器中显示 JSON——有没有办法允许用户下载文件?

java - 我想了解 Mac os 上 eclipse 中的自动完成和快捷方式

java - Admob 未在 ListView 布局中显示广告

java - 使用带有 Struts2 的 Spring Security 的表单的动态 URL 访问权限?

java - Spring 5.x 缺少请求 header "Accept"