Springboot載入靜態圖片
阿新 • • 發佈:2019-01-07
java工具類:
import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; /** * Created by zhangj on 2018/07/31 */ @Configuration public class ShowImage extends WebMvcConfigurerAdapter { /** * 注入圖片存放路徑 */ @Value("${upload.path.prefix}") private String prefix; @Value("${upload.path.res}") private String uploadPath; @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { //注:使用此種方法進行路徑配置時,“file:D:/OTA/” 為正確路徑地址 “file:D:/OTA”為錯誤路徑地址,需以反斜槓結尾才可正確載入 registry.addResourceHandler("/images/**").addResourceLocations("file:" + prefix + "/"); super.addResourceHandlers(registry); } }
使用的是注入的方式,所以application中的配置:
upload:
path:
prefix: d:/app/share/data
res: /upload/resource/
載入靜態資原始檔時使用springboot使用的方式,需注意點為拼接的路徑需以反斜槓結尾,不然訪問不到正確的路徑地址,設定完成之後,即可進行訪問。
如圖片路徑地址為:file:///D:/app/share/data/upload/resource/20180919/b104721b07d64501a6d24215dbc70207.bmp
需將 file:///D:/app/share/data 更改為 http://localhost:8765/images 即可成功訪問。