Commit 9882cb97 authored by j.yao.SUSE's avatar j.yao.SUSE Committed by elunez
Browse files

静态资源路径映射优化 (#172)

优化后 获取静态资源路径和操作系统无关
parent 58575378
...@@ -35,8 +35,8 @@ public class ConfigurerAdapter implements WebMvcConfigurer { ...@@ -35,8 +35,8 @@ public class ConfigurerAdapter implements WebMvcConfigurer {
@Override @Override
public void addResourceHandlers(ResourceHandlerRegistry registry) { public void addResourceHandlers(ResourceHandlerRegistry registry) {
String avatarUtl = "file:" + avatar.replace("\\","/"); String avatarUtl = Paths.get(avatar).normalize().toUri().toASCIIString();
String pathUtl = "file:" + path.replace("\\","/"); String pathUtl = Paths.get(path).normalize().toUri().toASCIIString();
registry.addResourceHandler("/avatar/**").addResourceLocations(avatarUtl).setCachePeriod(0); registry.addResourceHandler("/avatar/**").addResourceLocations(avatarUtl).setCachePeriod(0);
registry.addResourceHandler("/file/**").addResourceLocations(pathUtl).setCachePeriod(0); registry.addResourceHandler("/file/**").addResourceLocations(pathUtl).setCachePeriod(0);
registry.addResourceHandler("/**").addResourceLocations("classpath:/META-INF/resources/").setCachePeriod(0); registry.addResourceHandler("/**").addResourceLocations("classpath:/META-INF/resources/").setCachePeriod(0);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment