学习SpringMVC之mvc:view-controller标签

Posted 奔跑着的国风

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习SpringMVC之mvc:view-controller标签相关的知识,希望对你有一定的参考价值。

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>


但如果就这样配置会导致其他经过Handler方法的请求,无法响应,此时要在Springmvc.xml中配置:

<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标签的主要内容,如果未能解决你的问题,请参考以下文章

springmvc学习笔记(11)-springmvc注解开发之简单参数绑定

springmvc学习笔记(13)-springmvc注解开发之集合类型参数绑定

SpringMVC学习系列 之 初识SpringMVC

学习SpringMVC(十五)之CRUD操作

springmvc学习笔记之简介

学习SpringMVC(十六)之数据绑定流程