当前位置:   article > 正文

springBoot静态资源路径映射配置不生效,浏览器访问为404(addResourceHandler,addResourceLocations springboot-2.6.x不生效)的可能原因_addresourcehandlers 404

addresourcehandlers 404

springBoot静态资源路径映射配置不生效(addResourceHandler,addResourceLocations springboot-2.6.x不生效)的可能原因

静态资源路径映射配置的大致代码如下:

@Configuration
public class WebMvcConfig implements WebMvcConfigurer _{
_private static String localhostPath = “D:\学习资料\学习笔记\springboot+vue+elementUI-个人博客\images\”;

@Override
public void addResourceHandlers_(ResourceHandlerRegistry registry) {_
// registry.addResourceHandler(“虚拟路径”).addResourceLocations(“file:本地资源路径”);
registry.addResourceHandler_(“/image/**”).addResourceLocations(_“file:” + localhostPath);

}
}

随后发现配置不生效,使用浏览器打开都是404,已确认addResourceHandler和addResourceLocations所填的值均是正确的

当前使用的springboot版本是2.6.7版本

随后将springboot依赖修改成2.5.8版本后,静态资源映射就生效了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/917482
推荐阅读
相关标签
  

闽ICP备14008679号