Spring MVC <welcome-file-list> 问题

来源:互联网 发布:素描照片的软件 编辑:程序博客网 时间:2024/05/21 15:51

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")
0 0
原创粉丝点击