我正在使用Spring / Spring Boot /和Ember。我想把我的index.html文件放在" localhost"主文件夹,但我不知道Spring Tool Suite如何部署Spring Boot。在没有收到跨站点脚本错误的情况下,HTML开发和访问Spring REST服务器的正常流程是什么?
我的文件夹结构如下:
/.settings
/BookingClient
/gradle
/html (this is where my index.html, css, and all Ember related JS stuff is)
/node_modules
/src
/target
我猜它在/ target目录中的某处,但我尝试过的任何东西都没有用。
答案 0 :(得分:1)
Spring Boot将为您提供静态资源。只需将它们放入src/main/resources/static
即可。有关详细信息,请参阅documentation on static content。