package cn.internet.controller; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.validation.BindException; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.mvc.AbstractWizardFormController; import cn.internet.domain.Book; /** * 自定义向导表单控制器 * @author zhangbin * */ public class MyWizardFormController extends AbstractWizardFormController{ /** * 经过构造方法指定命令类和命令名称 */ public MyWizardFormController() { this.setCommandClass(Book.class); this.setCommandName("book"); } /** * 在最后一个表单页面统一提交数据时执行此方法 */ protected ModelAndView processFinish(HttpServletRequest request, HttpServletResponse response, Object command, BindException errors) throws Exception { Book book = (Book)command; System.out.println(book); return new ModelAndView("success","book",book); } }
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd "> <!-- 按照bean的名称进行访问:默认的处理器映射 --> <bean id="beanNameHandlerMapping" class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"> <property name="order" value="1"/> </bean> <!-- 简单url处理器映射组件:SimpleURLHandlerMapping --> <bean id="simpleUrlHandlerMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping"> <property name="mappings"> <props> <prop key="/a.do">userController</prop> <prop key="/b.do">userController</prop> <prop key="/c.do">userController</prop> </props> </property> <property name="order" value="2"/> </bean> <!-- 控制器类名处理器映射ControllerClassNameHandlerMapping --> <bean id="controllerClassNameHandlerMapping" class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"> <property name="order" value="3"/> </bean> <!-- 注册自定义的控制器,并经过name属性指定的值进行访问 --> <bean id="userController" name="/save.do" class="cn.internet.controller.UserController"></bean> <!-- 注册自定义的命令控制器 --> <bean name="/book.do" class="cn.internet.controller.BookController"></bean> <!-- 注册自定义的向导表单控制器 --> <bean name="/wizard.do" class="cn.internet.controller.MyWizardFormController"> <!-- 经过setter方法注入对应的表单jsp页面 --> <property name="pages"> <list> <value>wizard/1</value><!-- 逻辑视图名 --> <value>wizard/2</value> <value>wizard/3</value> </list> </property> </bean> <!-- 视图解析器 --> <bean name="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <!-- 经过setter方法注入前缀和后缀 --> <!-- 注入前缀 --> <property name="prefix" value="/jsps/"></property> <!-- 注入后缀 --> <property name="suffix" value=".jsp"></property> </bean> </beans>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>1.jsp</title> </head> <body> <form action="${pageContext.request.contextPath }/wizard.do" method="post"> id:<input type="text" name="id" value="${requestScope.book.id }"> <input type="submit" name="_cancel" value="取消"> <input type="submit" name="_target1" value="下一页"> </form> </body> </html>