拥有SpringMVC + AngularJS的应用程序。放入index.html页面 的src /主/ web应用/应用/ SRC / index.html中。
在web.xml中有
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
该应用程序适用于
http://localhost:8080/myapp/app/index.html
但不是 http://localhost:8080/myapp 应该进行哪些更改,以便将应用程序正确定向到index.html页面
答案 0 :(得分:0)
尝试替换
<welcome-file>index.html</welcome-file>
与
<welcome-file>app/index.html</welcome-file>
答案 1 :(得分:0)
我假设你配置了InternalResourceViewResolver
。
你必须进行2次更改。
1。
在web.xml中更改welcome-file,如下所示
<welcome-file-list>
<welcome-file>app/src/index.html</welcome-file>
</welcome-file-list>`
<mvc:resources mapping="/app/src/**" location="/app/src/"/>
<mvc:default-servlet-handler />
如果您正在使用基于注释的配置,则可以谷歌搜索上述配置的注释。