SpringBoot 访问web中的静态资源

总体来讲 SpringBoot 访问web中的静态资源,有两个方式:

1、classpath 类目录 (src/mian/resource)

       classpath 即 WEB-INF 下面的 classes 目录 ,在 SpringBoot  项目中是 src/main/resource 目录。

2、ServletContext 根目录下( src/main/webapp )

 

一、SpringBoot 访问web中的静态资源

SpringBoot默认指定了一些固定的目录结构,静态资源放到这些目录中的某一个,系统运行后浏览器就可以访问到。

在 WebMvcAutoConfiguration 类中可以看到 SpringMVC自动化配置的相关内容,找到静态资源拦截的配置信息的源码。

1、SpringBoot 默认指定的可以存放静态资源的目录有哪些?

       classpath:/META-INF/resources/      ## 需创建/META-INF/resources/ 目录

       classpath:/resources/                        ## 需创建/resources/目录

       classpath:/static/                               ## 工具自动生成的static目录,也是用的最多的目录

       classpath:/public/                              ## 需创建/public/ 目录

       src/main/webapp/                              ## 需创建/webapp/ 目录

       

2、在全局配置文件中修改这些默认的目录

     注意: 修改后,除配置的目录以外其他目录就不可以再访问静态资源了(SpringBoot 2.1.4 试了好像可以)

方式一:配置文件修改

YAML 文件:

server:
  port: 80
spring:
  resources:
    static-locations:
      - classpath:resources
      - classpath:static

properties 文件 

server.port=80
spring.resources.static-locations=classpath:resources,classpath:static

方式二:配置类修改

@Configuration
public class WebMVCConfig implements WebMvcConfigurer {
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/**").addResourceLocations("classpath:/static/","classpath:/aa");
    }
}

   访问的时候就需要写完整路径 http://127.0.0.1:8080/static/abc23.jpg

3、SpringBoot 默认的首页是放在任一个静态资源目录下的index.html   

4、SpringBoot 默认的web页面图标是放在任一静态资源目录下的favicon.ico

 

index.html




    
    Title


    

SpringBoot访问web中的静态资源

      SpringBoot 访问web中的静态资源_第1张图片    SpringBoot 访问web中的静态资源_第2张图片

  将静态资源放在上面指定的目录中,即可访问 index.html

 

二、把静态资源打成jar包引入系统后供访问

常用的静态资源jar包的maven依赖网站:http://www.webjars.org

 SpringBoot 访问web中的静态资源_第3张图片

把依赖配置到maven的pom.xml中,就可以在网站根目录/webjars/jquery/1.12.4/jquery.js访问到资源!

 SpringBoot 访问web中的静态资源_第4张图片

SpringBoot 访问web中的静态资源_第5张图片

index.html 正常引用 js,也正常访问到。

 

参考文章:Spring Boot 静态资源访问原理解析

ends ~

 

你可能感兴趣的:(SpringBoot)