SpringMVC中如何放行静态资源呢?

陈欣 SpringMVC 发布时间:2023-08-22 09:41:31 阅读数:2481 1
下文笔者讲述SpringMVC中放行静态资源的方法及示例分享,如下所示
SpringMVC给出了3种处理静态资源的方式
       其中2种是xml的配置方式
       1种是注解的配置方式

2.1:xml配置方式1:使用标签<mvc:resources />

在SpringMVC的核心配置文件springmvc.xml中配置(仅适用于springmvc3.0.4以后的版本):

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       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/context
       http://www.springframework.org/schema/context/spring-context.xsd
       http://www.springframework.org/schema/mvc
       http://www.springframework.org/schema/mvc/spring-mvc.xsd">
    <context:component-scan base-package="xxx.xxx.controller"/>
    <!-- 静态资源放行
        方式1:使用标签<mvc:resources/>指定需要放行的路径映射与文件目录
    -->
    <mvc:resources mapping="/js/**" location="/js/"/>
    <mvc:resources mapping="/css/**" location="/css/"/>
    <mvc:resources mapping="/pages/**" location="/pages/"/>
    <mvc:resources mapping="/plugins/**" location="/plugins/"/>
</beans>

2.2:xml配置方式2:使用标签<mvc:default-servlet-handler />

在SpringMVC的核心配置文件springmvc.xml中配置:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       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/context
       http://www.springframework.org/schema/context/spring-context.xsd
       http://www.springframework.org/schema/mvc
       http://www.springframework.org/schema/mvc/spring-mvc.xsd">
    <context:component-scan base-package="xxx.xxx.controller"/>
    <!-- 静态资源放行
        方式2:tomcat默认的DefaultServlet处理静态资源
        条件:必须开启mvc注解支持,即须配置<mvc:annotation-driven  />
        优先项目内的web.xml的配置,会优先执行DispatcherServlet;
        若匹配不到,则按照tomcat服务器的web.xml中设置的默认DefaultServlet(名为default)尝试访问。
    -->
    <mvc:default-servlet-handler />
    <!-- 开启mvc注解支持 -->
    <mvc:annotation-driven  />
   
</beans>
 
注意事项:
此方式有效的前提条件是必须开启mvc注解支持
    否则DispatcherServlet的映射会无效
      所有的请求会按照tomcat中默认的servlet进行映射。
开启mvc注解支持的方式有两种:
  xml标签配置:
      在mvc核心容器springmvc.xml中配置<mvc:annotation-driven />即可

=======================================================================
注解配置:在mvc核心容器SpringMvcConfig.java类上添加注解@EnableWebMvc即可 

2.3:注解的配置方式

SpringMVC中
   提供注解配置的接口WebMvcConfigurationSupport
   专门负责提供项目中需要的springmvc配置的特定功能支持
   包括且不仅仅包括了静态资源放行的功能接口、拦截器接口、视图控制器接口等
   开发人员只需继承此类并加载到springmvc核心容器
例:定义一个SpringMvcConfigSupport类继承WebMvcConfigurationSupport类
package com.java265.config;

import com.java265.controller.interceptor.LoginInterceptor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;

/**
 * 用于补充springmvc的配置
 * 通常用于静态资源放行、拦截器、视图控制器等的功能配置
 * 使用注解@Configuration将其标记为一个配置类,在Springmvc核心容器中可通过扫描包加载到
 */
@Configuration
public class SpringMvcConfigSupport extends WebMvcConfigurationSupport {

    @Autowired
    private HandlerInterceptor loginInterceptor;

    /**
     * 配置静态资源放行
     * 等同于在xml中配置<mvc:resources mapping="" location=""/>
     * @param registry
     */
    @Override
    protected void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/css/**").addResourceLocations("/css/");
        registry.addResourceHandler("/js/**").addResourceLocations("/js/");
        registry.addResourceHandler("/pages/**").addResourceLocations("/pages/");
        registry.addResourceHandler("/plugins/**").addResourceLocations("/plugins/");
    }

}

3:其他2种方式(不推荐)

3.1、在web.xml文件中激活Tomcat的名为default的Servlet来处理静态文件(冗杂)
<servlet-mapping>
    <servlet-name>default</servlet-name>
    <url-pattern>*.css</url-pattern>
</servlet-mapping>
<servlet-mapping>
    <servlet-name>default</servlet-name>
    <url-pattern>*.js</url-pattern>
</servlet-mapping>
<servlet-mapping>
    <servlet-name>default</servlet-name>
    <url-pattern>/img/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
    <servlet-name>default</servlet-name>
    <url-pattern>*.html</url-pattern>
</servlet-mapping>

3.2、修改DispatcherServlet的映射url为*.do或*.action

<!-- 设置springmvc的前端控制器 -->
  <servlet>
    <servlet-name>dispatchServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:springmvc.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>

  <servlet-mapping>
    <servlet-name>dispatchServlet</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>
 
规定访问路径必须带有后缀,使用*.do或*.action或*.html等方式
才能进入spingmvc的拦截,即便可以处理静态资源的访问
但是对于其他的请求有很大的限制要求
且无法处理rest风格的请求方式
其他请求则全部放行
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaFramework/SpringMVC/202308/7263.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者