美文网首页
Springboot 本地地址映射到网络

Springboot 本地地址映射到网络

作者: 树蜂 | 来源:发表于2019-05-04 17:50 被阅读0次

如下代码,将服务器上的本地地址D:/download映射到网络地址/haha/

@Configuration
public class MyConfiguration implements WebMvcConfigurer 
{
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry)
    {
        registry.addResourceHandler("/haha/**")
        .addResourceLocations("file:D:/download/");
    }
}

例如,
服务器地址为http://www.test.com
要访问该服务器上的文件 D:/download/abc.txt
则访问http://www.test.com/haha/abc.txt即可

相关文章

网友评论

      本文标题:Springboot 本地地址映射到网络

      本文链接:https://www.haomeiwen.com/subject/rnhfoqtx.html