您的位置:首页 > 编程语言 > Java开发

Spring MVC <welcome-file-list> 问题

2016-11-07 18:49 351 查看
web.xml上首先设置

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


然后给SpringMVC 增加一个/index 的映射

<servlet-mapping>
<servlet-name>springMVC</servlet-name>
<url-pattern>/index</url-pattern>
</servlet-mapping>


最后在controller层添加一个首页控制器得到index的请求

@RequestMapping("/index")
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: