zoukankan      html  css  js  c++  java
  • 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 }

    还有直接在配置文件中配置

    这样也可以映射到本地路径但是 static下面的文件 就访问不到了  我更喜欢使用第一种

      resources:
        static-locations: file:${web.upload-path},/static/**
  • 相关阅读:
    MySQL之SELECT用法
    Linux中find常见用法示例
    date命令
    backupMysql.sh
    Shell脚本中使用function(函数)示例
    zabbix邮件告警
    Zabbix系统数据采集方法总结
    TOMCAT原理详解及请求过程
    tomcat-users.xml 配置
    zabbix_sender用法实例
  • 原文地址:https://www.cnblogs.com/purely/p/13047962.html
Copyright © 2011-2022 走看看