首先,在做关于JpaTransactionManager之前,先对Jpa做一个简单的了解,他毕竟不如hibernate那么热门,其实二者很相识,只不过后期hibernate和JDO 版本都已经兼容了其Jpa,目前大家用的少了。
JPA全称Java Persistence API.JPA通过JDK 5.0注解或XML描述对象-关系表的映射关系,并将运行期的实体对象持久化到数据库中。
JPA的宗旨是为POJO提供持久化标准规范,由此可见,经过这几年的实践探索,能够脱离容器独立运行,方便开发和测试的理念已经深入人心了。Hibernate3.2、TopLink 10.1.3以及OpenJPA都提供了JPA的实现。
JPA的总体思想和现有Hibernate、TopLink、JDO等ORM框架大体一致。总的来说,JPA包括以下3方面的技术:
ORM映射元数据
JPA支持XML和JDK5.0注解两种元数据的形式,元数据描述对象和表之间的映射关系,框架据此将实体对象持久化到数据库表中;
API
用来操作实体对象,执行CRUD操作,框架在后台替我们完成所有的事情,开发者从繁琐的JDBC和SQL代码中解脱出来。
查询语言
这是持久化操作中很重要的一个方面,通过面向对象而非面向数据库的查询语言查询数据,避免程序的SQL语句紧密耦合。
下面,做一些JPA简单的例子,让大家熟悉一下JPA的配置:
1.productDao.java
package com.spring.jpa; import com.spring.model.Product; public interface ProductDao { public void save(Product p); }2.productDaoImpl.java
package com.spring.jpa; import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory; import javax.persistence.Persistence; import com.spring.model.Product; public class ProductDaoImpl implements ProductDao { public void save(Product p) { EntityManagerFactory emf = Persistence.createEntityManagerFactory("SimplePU"); EntityManager em = emf.createEntityManager(); em.getTransaction().begin(); em.persist(p); em.getTransaction().commit(); emf.close(); } }3.ProductManager.java
package com.spring.jpa; import com.spring.model.Product; public interface ProductManager { public void save(Product p); }4.ProductManagerImpl.java
package com.spring.jpa; import com.spring.model.Product; public class ProductManagerImpl implements ProductManager{ private ProductDao productDao = new ProductDaoImpl(); @Override public void save(Product p) { productDao.save(p); } }5.persistence.xml
<?xml version="1.0" encoding="UTF-8"?> <!-- 切记,该文件一定要放在/WEB-INF/classes/META-INF这里才能生效 --> <persistence xmlns="http://java.sun.com/xml/ns/persistence" version="2.0"> <persistence-unit name="SimplePU" transaction-type="RESOURCE_LOCAL"> <provider>org.hibernate.ejb.HibernatePersistence</provider> <class>com.spring.model.Product</class> <properties> <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver" /> <property name="hibernate.connection.url" value="jdbc:mysql://127.0.0.1:3306/jinhonglun" /> <property name="hibernate.connection.username" value="root" /> <property name="hibernate.connection.password" value="root" /> <property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5Dialect" /> <property name="hibernate.show_sql" value="true" /> <property name="hibernate.format_sql" value="true" /> <property name="hibernate.use_sql_comments" value="false" /> <property name="hibernate.hbm2ddl.auto" value="update" /> </properties> </persistence-unit> </persistence>6.SimpleSpringJpaDemo.java
package com.spring.jpa; import com.spring.model.Product; public class SimpleSpringJpaDemo { public static void main(String[] args) { Product p = new Product(); p.setProductTitle("JPA测试"); new ProductManagerImpl().save(p); } }接下来进行主题介绍JpaTransactionManager:
* 我们引入 Spring,以展示 Spring 框架对 JPA 的支持。业务层接口 ProductManager 保持不变,ProductManagerImpl 中增加了三个注解,
* 以让 Spring 完成依赖注入,因此不再需要使用 new 操作符创建 ProductDaoImpl 对象了。同时我们还使用了 Spring 的声明式事务:
1.ProductDaoImpl.java
package com.spring.jpaTransactionManager; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import org.springframework.stereotype.Repository; import org.springframework.transaction.annotation.Transactional; import com.spring.model.Product; @Repository("productDao") public class ProductDaoImpl implements ProductDao { @PersistenceContext private EntityManager em; @Transactional public void save(Product p) { em.persist(p); } }2.ProductManagerImpl.java
package com.spring.jpaTransactionManager; import javax.annotation.Resource; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import com.spring.model.Product; @Service("productManager") public class ProductManagerImpl implements ProductManager{ @Resource private ProductDao productDao; @Transactional @Override public void save(Product p) { productDao.save(p); } }3.SimpleSpringJpaDemo.java
package com.spring.jpaTransactionManager; import org.springframework.context.support.ClassPathXmlApplicationContext; import com.spring.model.Product; public class SimpleSpringJpaDemo { public static void main(String[] args) { ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("classpath:/com/spring/jpaTransactionManager/spring-jpa.xml"); ProductDao productDao = ctx.getBean("productDao", ProductDao.class); Product p = new Product(); p.setProductTitle("JPA Spring与JpaTransactionManager结合测试"); productDao.save(p); } }
4.spring-jpa.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"> <!-- 自动扫描包,自动将@Repository、@Service、@Controller 和 @Component自动实例化 --> <context:component-scan base-package="com.spring.jpaTransactionManager" /> <!-- Spring 事务配置,声明式事务 --> <tx:annotation-driven transaction-manager="transactionManager" /> <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> <property name="entityManagerFactory" ref="entityManagerFactory" /> </bean> <!-- LocalContainerEntityManagerFactoryBean 会自动检测 persistence units , 实际上,就是META-INF/persistence.xml(/WEB-INF/classes/META-INF) 文件和web.xml中的persistence-unit-ref, 以及定义的environment naming --> <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> </bean> </beans>
相关推荐
3. 配置JPA和事务管理:声明`LocalContainerEntityManagerFactoryBean`以创建EntityManagerFactory,配置`JpaTransactionManager`作为事务管理器。 4. 定义实体类:使用JPA注解(如@Entity、@Table、@Id等)来描述...
同时,需要配置数据源(DataSource)和事务管理器(如`DataSourceTransactionManager`或`JpaTransactionManager`),以便Spring知道如何与数据库交互并管理事务。 ```xml <bean id="dataSource" class="org.spring...
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> ``` 4. **创建实体类**:使用 JPA 注解定义实体类,例如 `@Entity`,`@Table`,`@Id` 等。 ```java @Entity @...
自动配置的事务管理器是Spring Boot自动提供的,手动配置的事务管理器需要我们自己定义。 SpringBoot之事务处理机制是Spring框架中的一种机制,用于管理事务。它提供了统一的机制来处理不同数据访问技术的事务处理...
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> ``` 在Struts2的Action中,我们可以通过Spring的`@Autowired`注解来注入Service层,Service层再注入Repository层,...
4. Spring Data JPA与事务管理 当使用Spring Data JPA时,事务管理可以自动与Repository方法关联。只需在Repository接口的方法上添加`@Transactional`,Spring Data会自动在每个数据库操作周围创建事务。 5. 自定义...
- `JpaTransactionManager`处理事务管理,确保数据操作的一致性。 - 当调用Repository方法时,Spring JPA会根据方法签名生成对应的SQL,这主要依赖于`SimpleJpaRepository`和`JpaQueryExecutor`。 7. **转换与...
在Spring Boot应用中,使用`spring-data-jpa`来配置MySQL多数据源是一项常见的需求,尤其是在构建大型分布式系统时,为了...在实际项目中,可能还需要考虑事务管理、数据源切换策略等问题,确保系统的稳定性和高性能。
5. **配置事务管理**:Spring提供了PlatformTransactionManager接口,通常使用JpaTransactionManager来管理JPA的事务。 6. **使用Repository**:Spring Data JPA提供了一种声明式的方法来定义Repository接口,可以...
Spring Boot 自动配置了许多常用的事务管理器,如 `DataSourceTransactionManager` 和 `JpaTransactionManager`。这意味着开发者无需显式地定义这些事务管理器,Spring Boot 会根据应用中使用的持久化技术自动选择...
5. **配置Spring的事务管理**:在服务层的类或方法上使用`@Transactional`注解,Spring会自动管理事务的开启、提交和回滚。 6. **测试**:编写测试用例,验证Spring和OpenJPA的集成是否成功。 通过以上步骤,你就...
- **事务管理**:使用 `@Transactional` 注解在方法上开启事务,由 `JpaTransactionManager` 自动管理。 3. **使用 JPA 的核心概念** - **实体(Entity)**: 代表数据库中的表,通过 `@Entity` 注解标识。 - **...
在实际应用中,Spring的事务管理可以结合JPA、Hibernate、MyBatis等ORM框架一起使用,实现数据库操作的事务控制。例如,在使用Spring Data JPA时,只需要在Repository接口方法上添加`@Transactional`注解,Spring就...
总结,本例展示了如何在Spring中使用JavaConfig配置JPA,包括数据源、实体管理工厂、事务管理器的配置,以及Spring Data JPA的简单使用。这个简单的例子有助于理解Spring与JPA的集成机制,便于在实际项目中灵活运用...
在Spring框架中,事务管理是实现业务逻辑时不可或缺的一部分,它确保了数据的一致性和完整性。本篇文章将详细解析Spring中的事务类型,帮助你更好地理解和应用这些知识。 首先,Spring支持两种事务管理方式:编程式...
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> ``` 这里配置了数据源 `dataSource`,实体扫描包 `com.example.myapp.domain`,JPA 供应商为 Hibernate,并...
首先,我们需要从Spring容器中获取`PlatformTransactionManager`实例,这通常是`DataSourceTransactionManager`或`JpaTransactionManager`等。然后,我们可以使用这个`PlatformTransactionManager`实例来创建`...
* 使用 JpaTransactionManager 类,手动控制事务的提交和回滚 锁 SpringDataJPA 提供了多种锁机制: *乐观锁:使用 @Version 注解,在实体类上指定版本号字段 *悲观锁:使用 @Lock 注解,在实体类上指定锁机制 *...
2. **配置事务管理器**:Spring Boot默认会根据你的数据源自动配置相应的事务管理器,如`DataSourceTransactionManager`(适用于JDBC)或`JpaTransactionManager`(适用于JPA)。 3. **启用事务**:在Spring Boot的...
如果使用JPA,事务管理器通常是`PlatformTransactionManager`的一个实现,如JpaTransactionManager。 每种方式都有其适用场景和优缺点。例如,基于XML的方式较为繁琐但清晰,而基于注解的方式则更加简洁,易于理解...