SpringBoot 常用配置 静态资源访问配置/内置tomcat虚拟文件映射路径

Posted chromet

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot 常用配置 静态资源访问配置/内置tomcat虚拟文件映射路径相关的知识,希望对你有一定的参考价值。

 

Springboot 再模板引擎中引入Js等文件,出现服务器拒绝访问的错误,需要配置过滤器

 

静态资源访问配置

@Configuration
@EnableWebMvc
public class StaticResourceConfig implements WebMvcConfigurer 

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) 
        registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
    

 

内置tomcat虚拟文件映射路径

@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter 

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) 
        registry.addResourceHandler("/image/**").addResourceLocations("file:C:/image/");
    

 

以上是关于SpringBoot 常用配置 静态资源访问配置/内置tomcat虚拟文件映射路径的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot配置静态资源访问办法

我在springMVC里配置了 静态资源访问 为啥还是访问不到

SpringBoot配置静态资源访问与本地路径的映射

SpringBoot中静态资源访问方案

springboot配置静态资源映射

springboot配置静态资源映射