我想访问url而不必提及spring MVC项目中根文件夹的名称。
实施例: http://localhost:8080/hospitalManagement/user的 - > http://localhost:8080/user
我是否需要在 web.xml 文件中进行任何修改?
答案 0 :(得分:0)
我不确定,但我认为这些步骤可以帮助你
现在,您可以使用新的"用户"运行您的应用URL如:
答案 1 :(得分:0)
我终于找到了答案......
在请求映射中将值设置为(" /")
@RequestMapping("/")
public String indexController(){
logger.info("IndexController Method called");
return "index";
}
还有web.xml文件
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
问题解决了!