springboot通过static-locations实现静态资源访问

由于我们的接口是通过springboot一键式打包成jar包发布到服务器的,因此在通过接口上传文件之后,客户端如果还需要再访问该文件,那就需要用到静态资源访问,spring配置如下:

spring:
    resources:
        static-locations: file:E:\workspace\serverWorkspace\upload\images\photo\20180820,file:/opt/www

一个是widows下做测试使用,另一个是linux下测试服务器使用。
有时候你会发现可能配置了static-locations但无效,原因可能就是你的目录不对,请仔细检查一下,别问我怎么知道的

如此之后验证即可,如我的:
浏览器输入:

localhost:9999/filename
springboot通过static-locations实现静态资源访问_第1张图片
image.png

你可能感兴趣的:(springboot通过static-locations实现静态资源访问)