Package fi.foyt.hibernate.gae.persistence

Examples of fi.foyt.hibernate.gae.persistence.Note


    try {
      entityManager.getTransaction().begin();
     
      if ("POST".equals(req.getMethod())) {
        String text = req.getParameter("note");
        Note note = new Note();
        note.setText(text);
        entityManager.persist(note);
      }
     
      req.setAttribute("notes", entityManager.createQuery("from Note").getResultList());
     
View Full Code Here

TOP

Related Classes of fi.foyt.hibernate.gae.persistence.Note

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.