Spring注入JPA+JPA事务管理

本例实现的是Spring注入JPA 和 使用JPA事务管理。JPA是sun公司开发的一项新的规范标准。在本质上来说,JPA可以看作是Hibernate的一个子集;然而从功能上来说,Hibernate是JPA的一种实现。

在web开发的过程中,使用hibernate进行数据库连接、事务等的管理。当然也可以使用JPA替换Hibernate是实现这些功能。

一、使用Spring来注入JPA

之前,在

中已经进行了hibernate的搭建和后期的是实现。了解到了,获取hibernate中的sessionFactory有两种方式。

    一种是自己手动获取src目录下hibernate.cfg.xml配置文件:(在dao层面的代码)

        SessionFactory sessionFactory = new Configuration().configure("hibernate.cfg.xml").buildSessionFactory();

    另外一种是使用spring注入,并且可以删除src目录下的配置文件:

      在spring的配置文件applicationContext.xml文件中进行sessionFactory和dataSource的bean的配置:之后在dao层面的实现类中定义一个属性为SessionFactory,使用spring注入

Spring注入JPA+JPA事务管理

  同理,使用JPA也有这两中方式来是实现。先前,本人博客中已进行了JPA第一种的实现(手动书写代码读取JPA配置文件):,所以在此,进行第二种使用spring注入的方式是实现获取EntityManagerFactory。

1、首先:在spring配置文件创建一个bean标签,目的创建一个EntityManagerFactory,这里不同于sessionFactory的bean,因为这里读取的是src目录下的META-INF目录下的persistence.xml 即JPA的配置文件,所以在下面设置的是持久化单元名"myJpa",对应JPA配置文件中的单元名字。

      <bean class="org.springframework.orm.jpa.LocalEntityManagerFactoryBean">    <property value="myJpa"/> </bean>

      JPA的配置文件 :persistence.xml,这里的具体不做过多的解释,如果有疑问,请上网查找资料。

<?xml version="1.0" encoding="UTF-8"?> <persistence version="2.0" 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_2_0.xsd"> <persistence-unit transaction-type="RESOURCE_LOCAL"> <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider> <class>entity.Product</class>
<properties> <property value="org.hibernate.dialect.MySQL5Dialect"/> <property value="com.mysql.jdbc.Driver"/> <property value="root"/> <property value="123456"/> <property value="jdbc:mysql://localhost:3306/ProductDB"/> <property value="true"></property> <property value="true"></property> <property value="false"/> <property value="update"/> </properties> </persistence-unit> </persistence>

2、最后:在dao层面设置sessionFactory成员属性。

               

Spring注入JPA+JPA事务管理

在这里,可以使用spring的注解,或者是使用bean注入的方式,这里使用的spring的注入进行注入。使用spring注解需要在spring配置文件中添加一个注解的解析器:,这个@Qualifier("entityManagerFactory")注解中的entityManagerFactory对应的是spring配置文件中JPA配置的entityManagerFactory的id属性值。

二、添加JPA的事务管理

1、首先建立在之前使用spring注入JPA的基础之上,再加入JPA的事务管理。好处 不需要手动开启、提交事务和关闭资源,因为这些都是重复的代码,做的事情都是同一样的。所以可以交给事务来管理。

首先:在spring配置文件applicationContext.xml中添加事务管理,如下 

<bean class="org.springframework.orm.jpa.JpaTransactionManager"> <property ref="entityManagerFactory"/> </bean> <tx:annotation-driven transaction-manager="txManager"/>

          其次:在dao层面加上注解@Transactional。这个注解需要加载类上。并且在这个dao类上加上一个属性:

Spring注入JPA+JPA事务管理

之后就可以直接使用这个entityManager进行CURD操作。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/f8ec89da38c1c87aa80fd334cb7f9eba.html