首页 > 其他分享 >访问springboot项目静态文件(图片)

访问springboot项目静态文件(图片)

时间:2022-11-05 14:26:06浏览次数:59  
标签:springboot 静态 访问 导入 static 图片 target

查看“1667626781298.jpg”图片

 

 配置:application.properties的配置文件进行配置

spring.mvc.static-path-pattern=/**
spring.web.resources.static-locations=classpath:/static/

 

访问:

 

需要注意的是:

使用springboot导入图片到项目后,接口返回导入成功的路径,这时前端直接访问的话,是无法访问的。如果有登录拦截,就提示未登录,如果没有就是404

这时由于导入的图片是放到项目的static目录下,而编译后的target中没有该资源。所以访问不到

解决方法:

1、导入后的存储路径改为target目录下,而不是项目的resource下的static,

2、String basePath = ClassUtils.getDefaultClassLoader().getResource("").getPath()+"static\\";

3、上面代码获取项目的target目录下,使用该路径导入后,直接存储在target里面,在项目的resource你会发现没有导入的图片,最后导入成功后就可以直接访问了

标签:springboot,静态,访问,导入,static,图片,target
From: https://www.cnblogs.com/lwl80/p/16860090.html

相关文章