springboot 配置本地文件映射路径

2020-06-05 16:05:18来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

springboot 配置本地文件映射路径

 1 @Configuration
 2 public class MyBlogWebMvcConfigurer extends WebMvcConfigurerAdapter {
 3 
 4     @Autowired
 5     private AdminLoginInterceptor adminLoginInterceptor;
 6 
 7     public void addInterceptors(InterceptorRegistry registry) {
 8         // 添加一个拦截器,拦截以/admin为前缀的url路径
 9         registry.addInterceptor(adminLoginInterceptor).addPathPatterns("/admin/**").excludePathPatterns("/admin/login").excludePathPatterns("/admin/dist/**").excludePathPatterns("/admin/plugins/**");
10         super.addInterceptors(registry);
11     }
12 
13     public void addResourceHandlers(ResourceHandlerRegistry registry) {
14         registry.addResourceHandler("/upload/**").addResourceLocations("file:" + Constants.FILE_UPLOAD_DIC);
15 
16         super.addResourceHandlers(registry);
17 
18     }
19 }

 


原文链接:https://www.cnblogs.com/purely/p/13047962.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:深入浅出 Java 类加载机制!

下一篇:idea使用小技巧(一)