第一种方式通过配置文件设置:
实现方式:springboot基本使用二(resources目录简单介绍)-CSDN博客文章浏览阅读907次,点赞25次,收藏22次。再次访问:location:8099/index.html。两个静态资源目录中有相同的文件,那么static的文件权限高于public的文件权限。那要如何访问static和public下的index.html文件呢?一般情况下我们的静态资源都是放在静态目录下,有哪些静态资源目录呢?springboot 配置文件application.properties和application.yml-CSDN博客。application.properties:配置文件。我个人使用的是application.yml文件。https://blog.csdn.net/weixin_41670405/article/details/136808469?spm=1001.2014.3001.5501第二种方式继承WebMvcConfigurationSupport类配置:
实现方式:
@Configuration public class WebReourcesConfig extends WebMvcConfigurationSupport {/*** 设置静态资源映射* @param registry*/@Overrideprotected void addResourceHandlers(ResourceHandlerRegistry registry){// 访问地址为http://localhost:端口/123/静态资源名称//registry.addResourceHandler("/123/**").addResourceLocations("classPath:/123/");// 访问地址为http://localhost:端口/静态资源名称registry.addResourceHandler("/**").addResourceLocations("classPath:/");} }