Spring 框架中的事务控制及声明事务控制配置方式

Spring 事务控制我们要明确的

第一:JavaEE 体系进行分层开发,事务处理位于业务层,Spring 提供了分层设计业务层的事务处理解决方
案。
第二:spring 框架为我们提供了一组事务控制的接口。这组接口是在
spring-tx-5.0.2.RELEASE.jar 中。
第三:spring 的事务控制都是基于 AOP 的,它既可以使用编程的方式实现,也可以使用配置的方式实现。

Spring 中事务控制的 API 介绍

PlatformTransactionManager

此接口是 spring 的事务管理器,它里面提供了我们常用的操作事务的方法,如下图:

常用的操作事务的方法.png

TransactionDefinition

Snipaste_2019-07-05_10-10-21.png

事务的隔离级别

Snipaste_2019-07-05_10-11-18.png

事务的传播行为

REQUIRED:如果当前没有事务,就新建一个事务,如果已经存在一个事务中,加入到这个事务中。一般的选
择(默认值)
SUPPORTS:支持当前事务,如果当前没有事务,就以非事务方式执行(没有事务)
MANDATORY:使用当前的事务,如果当前没有事务,就抛出异常
REQUERS_NEW:新建事务,如果当前在事务中,把当前事务挂起。
NOT_SUPPORTED:以非事务方式执行操作,如果当前存在事务,就把当前事务挂起
NEVER:以非事务方式运行,如果当前存在事务,抛出异常
NESTED:如果当前存在事务,则在嵌套事务内执行。如果当前没有事务,则执行 REQUIRED 类似的操作。

超时时间

默认值是-1,没有超时限制。如果有,以秒为单位进行设置。

是否是只读事务

建议查询时设置为只读。

基于半 XML半注解 的声明式事务控制配置方式(不用Spring Boot是主流方式)

第一步:创建 maven 工程并导入坐标

<dependencies>
<!--Spring Context:在基础IOC功能上提供扩展服务,此外还提供许多企业级服务的支持,有邮件服务、任务调度、JNDI定位,EJB集成、远程访问、缓存以及多种视图层框架的支持。-->
 <dependency> 
<groupId>org.springframework</groupId>
 <artifactId>spring-context</artifactId> <version>5.0.2.RELEASE</version>
</dependency>
<!--Spring JDBC:对JDBC 的简单封装-->
 <dependency>
 <groupId>org.springframework</groupId>
 <artifactId>spring-jdbc</artifactId> <version>5.0.2.RELEASE</version>
</dependency> 
<!--Spring tx:为JDBC、Hibernate、JDO、JPA等提供的一致的声明式和编程式事务管理。-->
<dependency> <groupId>org.springframework</groupId>
 <artifactId>spring-tx</artifactId> <version>5.0.2.RELEASE</version>
</dependency>
<dependency> 
<groupId>mysql</groupId> 
<artifactId>mysql-connector-java</artifactId> <version>5.1.6</version>
</dependency>
</dependencies>

第二步:创建 spring 的配置文件并导入约束

此处需要导入 aop 和 tx 两个名称空间
<?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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx 
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop 
http://www.springframework.org/schema/aop/spring-aop.xsd">
</beans>

第三步:配置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:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop" 
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
<!--注入扫描指定文件夹下类-->
<context:component-scan base-package="com.gzy"/>
<!--注入外部属性文件(db.properties这里存的是数据库配置信息)-->   
 <context:property-placeholder location="classpath:db.properties"/>
    <bean id="datasource" class="com.zaxxer.hikari.HikariDataSource">
        <property name="password" value="${jdbc.password}"/>
        <property name="username" value="${jdbc.username}"/>
        <property name="driverClassName" value="${jdbc.driver}"/>
        <property name="jdbcUrl" value="${jdbc.url}"/>
    </bean>
<!--
       它是 spring 框架中提供的一个对象,是对原始 Jdbc API 对象的简单封装。spring 框架为我们提供了很多
的操作模板类。(类似于 QueryRunner)
    -->
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="datasource"/>
    </bean>
<!--
        配置了一个事务管理对象
    -->
<bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="datasource"/>
</bean>
<!--下面注释部分为纯xml配置方式,这里不解释,有兴趣可参考
 细致划分事务属性:
                isolation:事务隔离级别
                read-only:是否是只读事务
                timeout:超时时间 没人修改这个值 默认就挺好
                rollback-for:因为啥回滚  后面写一个exception的类名
                no-rollback-for:反过来
                propagation: 事务的传播行为-->
    <!--<tx:advice id="tx" transaction-manager="dataSourceTransactionManager">-->
        <!--<tx:attributes>-->
            <!--<tx:method name="*" read-only="false"/>-->
        <!--</tx:attributes>-->
    <!--</tx:advice>-->
    <!--<aop:config>-->
        <!--<aop:advisor advice-ref="tx" pointcut="execution(* com.gzy.service..*.*(..))"/>-->
    <!--</aop:config>-->
<!--开启 事务注解扫描-->
    <tx:annotation-driven transaction-manager="dataSourceTransactionManager"/>
</beans>

第四步:使用注解添加事务

@Transactional(readOnly = false):开启事务
@Transactional(readOnly = ftrue):关闭事务
使用技巧:
若类中需开启事务的方法较多,可在类上开启事务,不需开启事务的方法单独加关闭事务注解(都开启事务影响性能),反之同理。

package com.gzy.service.imp;

import com.gzy.dao.AccountDao;
import com.gzy.domain.Account;
import com.gzy.service.AccountService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import java.util.List;

@Service
@Transactional(readOnly = false)
public class AccountServiceImp implements AccountService {
    @Autowired
    private AccountDao accountDao;
    public void transferAccounts(String sendname,String payeename,double money){
      accountDao.transferAccounts(sendname,-money);
      //int i=10/0;
      accountDao.transferAccounts(payeename,money);
    }

    @Override
    public void save(Account account) {
        accountDao.save(account);
    }

    @Override
    @Transactional(readOnly = true)
    public List<Account> findAll() {
      return accountDao.findAll();
    }
}

扩展:纯注解配置

定义配置类
package com.gzy.config;

import com.sun.javafx.sg.prism.web.NGWebView;
import com.zaxxer.hikari.HikariDataSource;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.transaction.annotation.EnableTransactionManagement;

import javax.sql.DataSource;

@Configuration
@ComponentScan("com.itheima")
@PropertySource("classpath:db.properties")
@EnableTransactionManagement
//开启注解扫描
public class Config {
    @Value("${jdbc.driver}")
    private String driver;
    @Value("${jdbc.url}")
    private String url;
    @Value("${jdbc.username}")
    private String username;
    @Value("${jdbc.password}")
    private String password;
    @Bean
    public DataSource getDataSource(){
        HikariDataSource hikariDataSource = new HikariDataSource();
        hikariDataSource.setDriverClassName(driver);
        hikariDataSource.setJdbcUrl(url);
        hikariDataSource.setUsername(username);
        hikariDataSource.setPassword(password);
        return  hikariDataSource;
    }
    @Bean
    public JdbcTemplate getJdbcTemplate(DataSource dataSource){
        JdbcTemplate jdbcTemplate = new JdbcTemplate();
        jdbcTemplate.setDataSource(dataSource);
        return jdbcTemplate;
    }

    @Bean
    public DataSourceTransactionManager getDataSourceTransactionManager(DataSource dataSource){
        DataSourceTransactionManager dataSourceTransactionManager = new DataSourceTransactionManager();
        dataSourceTransactionManager.setDataSource(dataSource);
        return dataSourceTransactionManager;
    }
}

利用注解使用事务与上述一样

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值