使用gradle build的spring boot应用程序找不到index.html

时间:2015-08-03 22:34:49

标签: angularjs gradle spring-boot

我有一个带有gradle构建的spring boot应用程序。

我在main / resources下有static / index.html。当服务器启动时,尝试访问index.html会返回404抱怨没有找到URI的映射。

任何见解?

1 个答案:

答案 0 :(得分:1)

如果您拥有main/resources中的静态资源,那么它们就在错误的位置。它们应位于src/main/resources,即index.html文件的路径应为src/main/resources/static/index.html