摘要: package test;import static org.junit.Assert.*;import java.util.List;import org.hibernate.SessionFactory;import org.junit.Ignore;import org.junit.Test;... 阅读全文
posted @ 2015-07-17 16:37 heyesp 阅读(267) 评论(0) 推荐(0)
摘要: 我们在Java中谈到持久化时,一般是指利用SQL在关系数据库中存储数据。 ORM映射元数据,JPA支持XML和JDK 5.0注解两种元数据的形式,元数据描述对象和表之间的映射关系,框架据此将实体对象持久化到数据库表中; JPA 框架中支持大数据集、事务、并发等容器级事务,这使得 JPA 超越... 阅读全文
posted @ 2015-07-17 13:33 heyesp 阅读(601) 评论(0) 推荐(0)