Package javango.contrib.hibernate

Examples of javango.contrib.hibernate.HibernateManager.save()


      Poll p = new Poll();
      p.setQuestion("AdminTestQuestion : " + i );
      p.setPubDate(new Date());
      Manager dao = new HibernateManager(injector.getInstance(HibernateUtil.class), Poll.class);
   
      dao.save(p);
    }
    injector.getInstance(HibernateUtil.class).getSession().getTransaction().commit();
  }

  public void testAdminHomePage() throws Exception {
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.