SpringBoot配置虚拟路径相关问题

配置完虚拟路径后,上传图片时,会上传到虚拟目录对应的本地真实文件夹。

config the virtual path spring.http.multipart.location=D:/testPic/ spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/, classpath:/static/, classpath:/public/, file:${spring.http.multipart.location}

比如,这样配置完成后,上传的图片就会放在D盘下的testPic文件夹下。
【SpringBoot配置虚拟路径相关问题】存放到数据库里面的路径,经过自己的拼接后,路径为D:/testPic/*.jpg
但是在前台页面,img标签用这个路径会出现图片不能显示的问题。
当直接以根目录的形式如:/*.jpg来作为src路径时,则不会出现图片无法显示的问题。
示例: 正确:SpringBoot配置虚拟路径相关问题 错误:SpringBoot配置虚拟路径相关问题

    推荐阅读