文件名称:jpa完整代码+单元测试
文件大小:5KB
文件格式:RAR
更新时间:2017-09-11 08:31:09
jpa hibernate
jpa+hibernate单元测试 public class PersonTest { @BeforeClass public static void setUpBeforeClass() throws Exception { } @Test public void save(){ EntityManagerFactory factory = Persistence.createEntityManagerFactory("itcast"); EntityManager em = factory.createEntityManager(); em.getTransaction().begin(); em.persist(new Person("alsjdfl")); em.getTransaction().commit(); em.close(); } }
【文件预览】:
JPA
----.project(379B)
----src()
--------cn()
--------META-INF()
--------junit()
----.settings()
--------org.eclipse.jdt.core.prefs(598B)
----.classpath(2KB)
----bin()
--------cn()
--------META-INF()
--------junit()