Package com.artezio.testapp.domain

Examples of com.artezio.testapp.domain.Person


 
  @RequestMapping(value = "person/new")
  public String shoNewPerson(Model model){
    logger.info("Request for adding person");
   
    model.addAttribute("person", new Person());
    model.addAttribute("cityList", cityService.listCity());
   
    return "edit-person";
  }
View Full Code Here


   
    return criteria.list();
  }

  public void removePerson(Integer id) {
    Person person = (Person) sessionFactory
        .getCurrentSession()
        .load(Person.class, id);
    if (null != person) {
      sessionFactory.getCurrentSession().delete(person);
    }
View Full Code Here

TOP

Related Classes of com.artezio.testapp.domain.Person

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.