如何在Spring Boot中从根目录访问JavaScript文件

时间:2019-10-23 10:03:42

标签: spring-boot

我想从根目录访问我的文件,例如https://localhost:8080/myfile.js 当点击这个URL时,它给了我404错误页面未找到。 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

如果如下所述将JavaScript文件放置在项目的子目录之一中,则该文件应立即可用。

src/main/resources/META-INF/resources/myfile.js    
src/main/resources/resources/myfile.js    
src/main/resources/static/myfile.js    
src/main/resources/public/myfile.js
  

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

/META-INF/resources/
/resources/
/static/
/public/

https://spring.io/blog/2013/12/19/serving-static-web-content-with-spring-boot