Package com.fengjing.framework.springmvc.handling.multipage.forms.model

Examples of com.fengjing.framework.springmvc.handling.multipage.forms.model.User


  @Override
  protected Object formBackingObject(HttpServletRequest request)
    throws Exception {
    return new User();
  }
View Full Code Here


  protected ModelAndView processFinish(HttpServletRequest request,
    HttpServletResponse response, Object command, BindException errors)
    throws Exception {
    //Get the data from command object
    User user = (User)command;
    System.out.println(user);
    //where is the finish page?
    return new ModelAndView("ResultForm", "user", user);
  }
View Full Code Here

TOP

Related Classes of com.fengjing.framework.springmvc.handling.multipage.forms.model.User

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.