当基于Spring的Web应用程序启动时,它必须从一些特定的URL开始

时间:2016-03-05 13:03:04

标签: spring spring-mvc

当我使用Spring MVC启动我的Web应用程序时。

默认情况下应从以下网址开始 http://localhost:8080/myapp/index.jsp

但不是 http://localhost:8080/myapp/

是否可以使用注释重定向到index.jsp(除了在web.xml上将其写为Welcomelist)

提前致谢。

1 个答案:

答案 0 :(得分:1)

假设index.jsp是您的第一页,请先配置web.xml将其打开。

<welcome-file-list>
  <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

编辑:您可以在@WebConfig中定义映射,并启动项目,但您仍需要一个web.xml welcome-file-list。有关讨论,请参阅@WebServlet annotation web.xml welcome-file