Package com.form

Examples of com.form.LoginForm


@Controller
@RequestMapping("loginform.html")
public class LoginController {
  @RequestMapping(method = RequestMethod.GET)
  public String showForm(Map model) {
    LoginForm loginForm = new LoginForm();
    model.put("loginForm", loginForm);
    return "loginform";
  }
View Full Code Here

TOP

Related Classes of com.form.LoginForm

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.