Package me.victorhernandez.hellospring.dao.jpa

Examples of me.victorhernandez.hellospring.dao.jpa.UserDaoJpa.save()


  private static final long serialVersionUID = -6236373110062737899L;

  public void submit() {
    UserDaoJpa userDao = new UserDaoJpa();
    userDao.save(user);
    FacesMessage message = new FacesMessage("Registro exitoso!");
    FacesContext.getCurrentInstance().addMessage(null, message);
    clearForm();
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.