Package org.springframework.samples.petportal.domain

Examples of org.springframework.samples.petportal.domain.PetSite


  @RequestMapping(params = "action=add"// render phase
  public String showSiteForm(Model model) {
    // Used for the initial form as well as for redisplaying with errors.
    if (!model.containsAttribute("site")) {
      model.addAttribute("site", new PetSite());
    }
    return "petSitesAdd";
  }
View Full Code Here

TOP

Related Classes of org.springframework.samples.petportal.domain.PetSite

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.