JPA环境搭建及JPA实例与JPA主键生成策略

知识点:


开发JPA依赖的jar文件:(这里使用JPA实现产品hibernate)

注意:导入*.jar文件的时候不要有中文路径和空格,最好是在项目中建立一个包来存放这些jar文件
Hiberante核心包(8个文件)
hibernate-distribution-3.3.1.GA
---------------------------------------------
hibernate3.jar
lib\bytecode\cglib\hibernate-cglib-repack-2.1_3.jar
lib\required\*.jar

Hiberante注解包(3个文件):hibernate-annotations-3.4.0.GA
------------------------------------------------------------------------------------
hibernate-annotations.jar
lib\ejb3-persistence.jar、hibernate-commons-annotations.jar

Hibernate针对JPA的实现包(3个文件):hibernate-entitymanager-3.4.0.GA
------------------------------------------------------------------------------------------------------
hibernate-entitymanager.jar
lib\test\log4j.jar、slf4j-log4j12.jar

需要的包可见附件...


JPA的配置文件:

JPA规范要求在类路径的META-INF目录下放置persistence.xml,文件的名称是固定的,配置模版如下:
<?xml version="1.0"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" version="1.0">
  <persistence-unit name="person" transaction-type="RESOURCE_LOCAL">
      <properties>
         <property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5Dialect"/>
         <property name="hibernate.connection.driver_class" value="org.gjt.mm.mysql.Driver"/>
         <property name="hibernate.connection.username" value="root"/>
         <property name="hibernate.connection.password" value="123456"/>
         <property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/student?useUnicode=true&amp;characterEncoding=UTF-8"/>
         <property name="hibernate.hbm2ddl.auto" value="update"/>
      </properties>
  </persistence-unit>
</persistence>



照样实现步骤:
第一步:导入JPA实现的产品*.jar 和相应的数据库驱动

第二步:类路径的META-INF目录下 persistence.xml

<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
version="1.0">
<!-- 以transaction-type下是 事务提交类型有两种事务:第一、本地事务(在同一个数据库中完成事务)  第二、全局事务(在不同数据库中需要在同一事务中完成不同数据库的操作)-->
<persistence-unit name="person" transaction-type="RESOURCE_LOCAL">
<properties>
<!-- 使用的方言 -->
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5Dialect" />
<!-- 数据库驱动 -->
<property name="hibernate.connection.driver_class" value="org.gjt.mm.mysql.Driver" />
<!-- 数据库用户名 -->
<property name="hibernate.connection.username" value="root" />
<!-- 数据库密码 -->
<property name="hibernate.connection.password" value="liyong" />
<!-- 数据库连接url -->
<property name="hibernate.connection.url"
value="jdbc:mysql://localhost:3306/student?useUnicode=true&amp;characterEncoding=UTF-8" />
<!-- 表结构发生变化的时候更新表结构 ,表不存在是创建表-->
<property name="hibernate.hbm2ddl.auto" value="update" />
</properties>
</persistence-unit>
</persistence>

第三步:编写实体

@Entity
public class Person {

private Integer id;
private String name;

public Person(){}

public Person(String name){
this.name=name;
}

//@Id表示这个属性为主键 (可以标注在字段上或是getter属性上)
//@GeneratedValue(strategy=GenerationType.AUTO)表示生成主键策略为自增长 ,为默认
//下面的两种策略在不同数据库中有些是不支持的所有,最好使用上面的策略它会根据方言自动来识别
//@GeneratedValue(strategy=GenerationType.IDENTITY
//@GeneratedValue(strategy=GenerationType.SEQUENCE
//@GeneratedValue(strategy=GenerationType.TABLE通用效率低
@Id @GeneratedValue(strategy=GenerationType.AUTO)
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}

public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}


}

第四步:编写单元测试

public class PersonTest {

@Test
public void save()
{
//得到这个EntityManagerFactory时就会去创建表
//hibernate 中得到sessionFactory同等
EntityManagerFactory entityFactory=Persistence.createEntityManagerFactory("person");
//得到EntityManager
//hibernate中得到session等同
EntityManager entity=entityFactory.createEntityManager();
//开启事务和hibernate一样
entity.getTransaction().begin();
entity.persist(new Person("liyong"));
entity.getTransaction().commit();
                  //关闭EntityManager
entity.close();
                  //关闭 EntityManagerFactory
      entityFactory.close();
}
}


第五步:运行...

你可能感兴趣的:(JPA环境搭建及JPA实例与JPA主键生成策略)