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版本后,静态资源映射就生效了