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 工程并导入坐标



  
org.springframework
 spring-context 5.0.2.RELEASE


 
 org.springframework
 spring-jdbc 5.0.2.RELEASE
 

 org.springframework
 spring-tx 5.0.2.RELEASE

 
mysql 
mysql-connector-java 5.1.6


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

此处需要导入 aop 和 tx 两个名称空间



第三步:配置xml





   
 
    
        
        
        
        
    

    
        
    


    


    
        
            
        
    
    
        
    

    

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

@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 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;
    }
}

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

你可能感兴趣的:(Spring 框架中的事务控制及声明事务控制配置方式)