SpringBoot打成war包后Tomcat无法访问静态资源问题
【摘要】 pom.xml配置了包名
<build>
<!--生成war包的名称-->
<finalName>mobile</finalName>
</build>
1234
将mobile.war放入tomcat的webapps目录下,页面可以访问
http://localhost:8080/mobile/
1...
pom.xml配置了包名
<build>
<!--生成war包的名称-->
<finalName>mobile</finalName>
</build>
- 1
- 2
- 3
- 4
将mobile.war放入tomcat的webapps目录下,页面可以访问
http://localhost:8080/mobile/
- 1
不过发现静态文件都无法访问
/static/img/icon.png
- 1
静态地址是以绝对路径/static
开头的,tomcat部署了多个项目,它也不知道你要访问那个项目下的静态资源,如果加上mobile 就可以访问到
/mobile/static/img/icon.png
- 1
可是我总不能在每个文件都加这么一个前缀吧
其实通过Nginx转发一下就能实现了
location / { proxy_pass http://127.0.0.1:8080/mobile/; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
- 1
- 2
- 3
- 4
- 5
这样一来所有路径都做了转发
/ => /mobile/
/static/img/icon.png => /mobile/static/img/icon.png
- 1
- 2
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/109991064
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)