标签:
mvc:view-controller标签作用:
配置直接转发页面,可以直接相应转发的页面,而无须再经过Handler方法
例子:
在index.jsp中:
<span style="font-family:SimSun;font-size:18px;"><a href="success">success</a></span>点击该超链接,不会经过Handler方法,而直接转发到相应页面
在springmvc.xml中配置:
<span style="font-family:SimSun;font-size:18px;"><mvc:view-controller path="/success" view-name="success"/></span>
<span style="font-family:SimSun;font-size:18px;"><mvc:annotation-driven/></span>mvc:annotation-driven 是一种简写形式,完全可以手动配置替代这种简写形式,简写形式可以让初学者快速应用默认配置方案。<mvc:annotation-driven /> 会自动注册DefaultAnnotationHandlerMapping与AnnotationMethodHandlerAdapter 两个bean,是spring MVC为@Controllers分发请求所必须的
学习SpringMVC(十二)之mvc:view-controller标签
标签:
原文地址:http://blog.csdn.net/baidu_21578557/article/details/51460935