Spring参考手册 mvc:view-controller

来源:互联网 发布:出货单打印软件免费版 编辑:程序博客网 时间:2024/06/06 01:27
 

This tag is a shorcut for defining a ParameterizableViewController that immediately forwards to a view when invoked.
这个标签是为了简化ParameterizableViewController映射到视图的配置

Use it in static cases when there is no Java Controller logic to execute before the view generates the response.
当响应视图是不需要执行控制器逻辑时使用

An example of view-controller that forwards to a home page is shown below:
一个跳转到主页的配置例子
<mvc:view-controller path="/" view-name="home"/>

原创粉丝点击