欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringMVC访问静态资源的方法

程序员文章站 2024-03-08 11:29:46
在springmvc中常用的就是controller与view。但是我们常常会需要访问静态资源,如html,js,css,image等。 默认的访问的url都会被disp...

在springmvc中常用的就是controller与view。但是我们常常会需要访问静态资源,如html,js,css,image等。

默认的访问的url都会被dispatcherservlet所拦截,但是我们希望静态资源可以直接访问。该肿么办呢?

在配置文件:web.xml可以看到:

  <!-- 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>

静态资源访问,其实方法有多种,如:通过开放tomcat的defaultservlet,修改默认的url-parttern。 

但是springmvc提供了更为便捷的方式处理静态资源。

解决方案:

直接在servlet-context.xml中添加资源映射。

我的开发环境:

1、eclipse luna sp1

2、springsource-tool-suite 3.6.4

修改servlet-context.xml,添加resource映射即可。

servlet-context.xml的路径如下:

SpringMVC访问静态资源的方法

配置文件内容:

<?xml version="1.0" encoding="utf-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
  xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
  xmlns:beans="http://www.springframework.org/schema/beans"
  xmlns:context="http://www.springframework.org/schema/context"
  xsi:schemalocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

  <!-- dispatcherservlet context: defines this servlet's request-processing infrastructure -->
  
  <!-- enables the spring mvc @controller programming model -->
  <annotation-driven />

  <!-- handles http get requests for /resources/** by efficiently serving up static resources in the ${webapproot}/resources directory -->
  <resources mapping="/resources/**" location="/resources/" />
  <resources mapping="/images/**" location="/images/" />
  <resources mapping="/js/**" location="/js/" />

  <!-- resolves views selected for rendering by @controllers to .jsp resources in the /web-inf/views directory -->
  <beans:bean class="org.springframework.web.servlet.view.internalresourceviewresolver">
    <beans:property name="prefix" value="/web-inf/views/" />
    <beans:property name="suffix" value=".jsp" />
  </beans:bean>
  
  <context:component-scan base-package="com.yank.firstapp" />    
  
</beans:beans>

资源映射

  <!-- handles http get requests for /resources/** by efficiently serving up static resources in the ${webapproot}/resources directory -->
  <resources mapping="/resources/**" location="/resources/" />
  <resources mapping="/images/**" location="/images/" />
  <resources mapping="/js/**" location="/js/" />

mapping:映射

location:本地资源路径,注意必须是webapp根目录下的路径。

两个*,它表示映射resources/下所有的url,包括子路径(即接多个/)

 这样我们就可以直接访问该文件夹下的静态内容了。

如:

http://localhost:8090/firstapp/images/cookie.png

http://localhost:8090/firstapp/js/jquery-1.11.2.js

效果:

SpringMVC访问静态资源的方法

陷阱:

配置的location一定要是webapp根目录下才行,如果你将资源目录,放置到webapp/web-inf下面的话,则就会访问失败。这个问题常常会犯。

错误方式:

SpringMVC访问静态资源的方法

web-inf目录作用

web-inf是java的web应用的安全目录。所谓安全就是客户端无法访问,只有服务端可以访问的目录。

如果想在页面中直接访问其中的文件,必须通过web.xml文件对要访问的文件进行相应映射才能访问。

当然,你非要放在web-inf中,则必须修改resources映射,如:

<resources mapping="/js/**" location="/web-inf/js/" />

推荐方式:本文的目录结构为如下图所示。

SpringMVC访问静态资源的方法

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。