spring boot静态资源404错误

时间:2017-11-24 08:34:59

标签: spring-boot static-resource

我正在学习春季靴子。 现在我必须将我的静态资源部署到Web项目,链接它, 但它返回404错误

enter image description here

此外,当我访问" localhost:8080 / appie / resources / js / common.js"浏览器返回404错误(我的上下文路径是/ appie)。

可能是什么原因?

server.contextPath=/appie

1 个答案:

答案 0 :(得分:0)

您应该阅读this guide about serving static content with spring boot

它说:

  

Spring Boot将自动添加位于以下任何目录中的静态Web资源:

  • / META-INF /资源/
  • /资源/
  • /静态/
  • /公共/

将js文件放入其中一个目录后,您可以通过$ host访问它:$ port / $ contextPath / common.js