我正在尝试在我的示例spring mvc项目中使用静态资源。在我的项目中,我在资源文件夹下创建了一个主题,如图所示。
然后我在spring-mvc-servlet.xml
中添加了以下3行代码<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.1.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd">
<context:component-scan base-package="com.sudheer.example" />
<context:annotation-config />
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/jsp/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
<mvc:resources mapping="/resources/**" location="/resources/theme/" cache-period="31556926"/>
<mvc:default-servlet-handler/>
<mvc:annotation-driven />
</beans>
当我尝试以多种不同的方式访问静态资源时,我无法访问它。 这是我的jsp页面:
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<!DOCTYPE html>
<html lang="en">
<head>
<link href="/resources/themes/css/bootstrap.min.css" rel="stylesheet" >
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath}/themes/bootstrap.min.css">
<link href="<c:url value="/resources/themes/css/bootstrap.min.css"/>"
rel="stylesheet" type="text/css"/>
</head>
<body>
<h1>1. Test CSS</h1>
<h2>2. Test JS</h2>
<div class="btn"></div>
</body>
</html>
这是我的web.xml
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>Archetype Created Web Application</display-name>
<servlet>
<servlet-name>spring-mvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring-mvc-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring-mvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
任何人都可以帮我解决这个问题吗?
答案 0 :(得分:2)
你有3个问题:
src/main/resources
对Maven有特殊含义:编译后,其内容将放在类路径中。2:当你使用spring资源映射时,那个映射匹配映射部分的URL的部分&#39; **&#39;将被添加到位置部分以获取文件。 (对不好的解释感到抱歉)一个例子会让它更清楚:假设你有这个资源映射
<mvc:resources mapping="/a/**" location="/b/c/" >
您要求网址http://localhost/myApp/a/d
然后春天会在/b/c/d
查找文件! - 因此,当您发送....../resources/themes/css/bootstrap.min.css
请求时,Spring会搜索:/resources/theme/themes/css/bootstrap.min.css
3:在spring config和文件夹中使用theme
但在jsp中使用themes
1 的解决方案是:要么通过在location属性中使用location
前缀来更改classpath:
spring资源映射以从类路径中获取资源,要么将其他文件夹中的文件:source/main/webapp/resources/theme
(然后是位置参数/resources/theme/
)将映射。
1 的类路径修复示例和 2 的一种可能修复:
<mvc:resources mapping="/resources/theme/**"
location="classpath:/resources/theme/" cache-period="31556926"/>
jsp - 修复 3 :
<link href="<c:url value="/resources/theme/css/bootstrap.min.css"/>"
rel="stylesheet" type="text/css"/>
答案 1 :(得分:1)
可能就是这样:
您有此配置
<mvc:resources mapping="/resources/**" location="/resources/theme/"
但是当你调用resourcek时,你可以使用这个
<c:url value="/resources/themes/css/bootstrap.min.css"/
我想你必须使用这个
/resources/css/bootstrap.min.css
答案 2 :(得分:1)
如果资源需要前端可见,则需要将资源放在“webapp”文件夹中。示例:webapp / theme / css / bootstrap.min.css
答案 3 :(得分:1)
我为Spring MVC创建了一个框架项目(也使用了静态资源)here。