根据文档,Spring将查找index.html文件的默认位置是/ static,/ public或/ resources。我一直试图改变我的目录结构,以便它在/ src / xyzapp中查找。我尝试将application.properties中的spring.mvc.static-path-pattern更改为:
spring.mvc.static-path-pattern=classpath:/src/xyzapp/
当我运行应用程序时,似乎没有看到我想要加载的页面。当我在/ static中使用它时,页面正常加载。我的语法是否关闭?