码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot-(10)配置虚拟路径-指定外部路径文件夹存取文件

时间:2019-11-02 19:45:33      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:ram   context   pre   create   frame   try   ddr   details   tor   

参考:https://blog.csdn.net/feng2147685/article/details/95623135

package com.online.director;

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

/**
 * Created by zhang_guang_yang on 2019/11/1.
 */
@Configuration
public class OnlineDirectorWebAppConfigurer extends WebMvcConfigurerAdapter {

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/server/**").addResourceLocations("file:/Users/zhang_guang_yang/Python/server/");
        super.addResourceHandlers(registry);
    }
}

  

SpringBoot-(10)配置虚拟路径-指定外部路径文件夹存取文件

标签:ram   context   pre   create   frame   try   ddr   details   tor   

原文地址:https://www.cnblogs.com/yangzigege/p/11783668.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!