SpringBoot2.0学习之静态资源的访问

SpringBoot2.0学习之静态资源的访问

1. 什么是静态资源?

类似css, js, 图片等资源统称为静态资源。

2. SpringBoot默认提供的静态资源的访问路径有哪些?

classpath:/static
classpath:/public
classpath:/resources
classpath:/META-INF/resources

3. 如果默认提供的没有你喜欢的单词该怎么办?

application.yml 中添加配置
spring:
  resources:
    ### 静态资源访问路径
    static-locations: classpath:/shuai/
例如:

SpringBoot2.0学习之静态资源的访问_第1张图片

4. 如何访问路径下的静态资源?

访问:localhost:8080/qf.png
注意:这里访问静态资源不需要添加文件夹的名称

5. 如果非要加文件名访问怎么办?

application.yml 中添加配置
spring:
  mvc:
    ### 设置mvc访问静态资源的映射规则
    static-path-pattern: /shuai/**
  resources:
    ### 静态资源访问路径
    static-locations: classpath:/shuai/
此时访问路径为:localhost:8080/shuai/qf.png

Ps: 为了项目结构不乱和后期方便对项目做动静分离的整改,建议所有的静态资源都放在统一的目录下。


你每天都在做很多看起来毫无意义的决定,

但某一天你的某个决定就会改变你的一生。

你可能感兴趣的:(springboot2.0学习)