springboot 2.0前端跨域 静态资源本地映射

Posted 冷枚

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 2.0前端跨域 静态资源本地映射相关的知识,希望对你有一定的参考价值。

由于在springboot 2.0 WebMvcAutoConfigurationAdapter 这个类成为了自动配置类 如果你要集成这个类 自动配置的许多属性就会失效 也就是说此类已过期 你需要使用一下

接口来实现静态资源的本地映射和前端跨域 等一系列功能 

@Configuration
public class WebAppConfig implements WebMvcConfigurer {

    /*
    * 静态资源本地映射
    * img是虚拟路径
    * 映射到本地D盘javaspace下的tomcatpath下
    * 浏览器访问:localhost:8080/img/xxx文件
    * */
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/img/**")
                .addResourceLocations("file:D:/javaspace/tomcatPath/")
                .setCachePeriod(31556926);
    }
    //前端跨域
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")//设置允许跨域的路径
                .allowedOrigins("*")//设置允许跨域请求的域名
                .allowCredentials(true)//是否允许证书 不再默认开启
                .allowedMethods("GET", "POST", "PUT", "DELETE")//设置允许的方法
                .maxAge(3600);//跨域允许时间
    }
}

 

以上是关于springboot 2.0前端跨域 静态资源本地映射的主要内容,如果未能解决你的问题,请参考以下文章

springboot项目图片上传,回显;使用外部静态资源路径回显图片

springboot 2.0+ 自定义拦截器 静态资源问题

前端开发如何独立解决跨域问题

springboot设置静态资源缓存一年

SpringBoot学习-SpringBoot添加支持CORS跨域访问

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