springmvc、springboot静态资源访问配置

如何访问项目中的静态资源?

一.springmvc

springmvc中访问静态资源,如果DispatcherServlet拦截的为"",那么静态资源的访问也会交给DispatcherServlet处理,就会因为找不到资源的映射出现404的问题:

No mapping found for HTTP request with URI [/templates/file/test.xlsx] in DispatcherServlet with name 'dispatcherServlet'

解决办法:

1.服务器的defaultServlet

以tomcat为例,在 web.xml中增加配置


     default
     *.jpg
 
 
     default
     *.js
 
 
     default
     *.css
   
 
     default
     *.xlsx
   

2.spring的mvc:resources 配置

spring在3.0.4之后提供了对系统静态资源文件访问


使用 元素,把 mapping 的 URI 注册到 SimpleUrlHandlerMapping的urlMap 中,key 为 mapping 的 URI pattern值,而 value为 ResourceHttpRequestHandler,这样就巧妙的把对静态资源的访问由 HandlerMapping 转到ResourceHttpRequestHandler 处理并返回,所以就支持 classpath 目录, jar 包内静态资源的访问.
另外需要注意的一点是,不要对 SimpleUrlHandlerMapping 设置 defaultHandler. 因为对 static uri 的 defaultHandler 就是ResourceHttpRequestHandler,否则无法处理static resources request.

二.springboot

在application.properties增加配置:

spring.mvc.static-path-pattern=/dist/**
spring.resources.static-locations=classpath:webapp/dist/

spring.mvc.static-path-pattern:指定静态文件类型
spring.resources.static-locations:指定静态文件路径

你可能感兴趣的:(springmvc、springboot静态资源访问配置)