springboot通过URL直接获取图片

第一步:

确保是web项目

映射请求到图片路径下

相对路径:registry.addResourceHandler(“/static/**”).addResourceLocations(“classpath:/templates/static/”);

绝对路径:registry.addResourceHandler(“/image/**”).addResourceLocations(“file:” + SystemAPI.filePath);

注意:SystemAPI.filePath为要访问的文件夹路径

整体代码如图

实现以上两步便可以通过URL(http://192.168.2.105:5005/image/430425196910236722.jpg)请求到SystemAPI.filPath路径下的图片

你可能感兴趣的:(java,java,后端)