Spring的声明式事务控制

发布时间:2022-08-18 18:10

Spring中的声明式事务控制(配置方式)

一.关于Spring中的事务控制

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

二.两种方式实现事务控制案例

①基于xml的声明式事务控制

1.导入jar包


        junit
        junit
        4.12
        test
    
    
        org.springframework
        spring-context
        5.3.2
    
    
        org.aspectj
        aspectjweaver
        1.9.6
    
    
        org.springframework
        spring-jdbc
        5.3.2
    
    
        org.springframework
        spring-test
        5.3.2
        test
    
    
        mysql
        mysql-connector-java
        8.0.21
    
        
            junit
            junit
            4.12
            compile
        
        
            org.springframework
            spring-test
            5.3.2
            compile
        

2.创建bean.xml文件

配置可以分为六步:
1.配置事务管理器
2.配置事物的通知
id:给事务通知起一个唯一的标识
transaction-Manager:给事务通知提供一个事务管理器引用
3.配置aop
4.配置切入点表达式
5.建立切入点表达式和事务通知的对应关系
6.配置事务的属性
isolation=:指定事务的隔离级别。默认值是使用数据库的默认隔离级别。
propagation=指定事务的传播行为。
read-only:是否是只读事务。默认 false,不只读。
rollback-for:用于指定一个异常,当执行产生该异常时,事务回滚。产生其他异常,事务不回滚。
没有默认值,任何异常都回滚。
no-rollback-for=:用于指定一个异常,当产生该异常时,事务不回滚,产生其他异常时,事务回
滚。没有默认值,任何异常都回滚。
timeout=用于z指定事务的超时时间,默认是-1,表示永不超时,如果指定了时间,以秒为单位




   
   
   

   
   
       
   
   
   
   
       
       
       
       
   

   
   
       
   
   
   
           
   
       
       
   

   
   
   
       
   
       
   



3.dao层代码


import org.springframework.jdbc.core.support.JdbcDaoSupport;
import org.springframework.stereotype.Repository;


/**
 * @author Mr Z
 * @create 2020 12 2020/12/15 20:21
 */
@Repository
public class TeacherDao extends JdbcDaoSupport {

    public int delete(int tno){
        String sql="delete from teacher where tno=?";
        int rows=this.getJdbcTemplate().update(sql,tno);
        return rows;
    }
}

4.业务层代码

import com.xszx.dao.TeacherDao;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

/**
 * @author Mr Z
 * @create 2020 12 2020/12/15 20:22
 */
@Service
public class TeacherService {
    @Autowired
    private TeacherDao teacherDao;
    @Transactional(propagation = Propagation.REQUIRED)
    public int remove(int tno){
        System.out.println("TeacherService.remove");
        //int a=1/0;
        int delete = teacherDao.delete(tno);
        return delete;
    }
}

5.业务层代码

import com.xszx.service.TeacherService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

/**
 * @author Mr Z
 * @create 2020 12 2020/12/16 15:25
 */
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:bean.xml")
public class ServiceTest {
    @Autowired
     private  TeacherService teacherService;
    @Test
    public  void deleteTest(){
        int remove = teacherService.remove(10);
        System.out.println("remove = " + remove);
    }
    
}

②基于注解的声明式事务控制

1.导入jar包同上

2.配置数据库属性集(mysql 8)

jdbc.driver=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/sims?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=UTC
jdbc.username=root
jdbc.password=123456

3.Jdbc 配置类

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.datasource.DriverManagerDataSource;
import javax.sql.DataSource;

/**
 * @author Mr Z
 * @create 2021 01 2021/1/8 13:09
 */
public class JdbcConfig {
    @Value("${jdbc.driver}")
    private String driver;
    @Value("${jdbc.url}")
    private String url;
    @Value("${jdbc.username}")
    private String username;
    @Value("${jdbc.password}")
    private String password;

    /**
     * 创建JdbcTemplate
     * @param dataSource
     * @return
     */
    @Bean(name = "jdbcTemplate")
    private JdbcTemplate createJdbcTemplate(DataSource dataSource){
        return  new JdbcTemplate(dataSource);
    }

    /**
     * 创建数据源对象
     * @return
     */
    @Bean(name = "dataSource")
    public DataSource createDateSource(){
        DriverManagerDataSource ds = new DriverManagerDataSource();
        ds.setDriverClassName(driver);
        ds.setUrl(url);
        ds.setUsername(username);
        ds.setPassword(password);
        return ds;
    }
}

4.TransactionManager类

import org.springframework.context.annotation.Bean;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.transaction.PlatformTransactionManager;

import javax.sql.DataSource;

/**
 * @author Mr Z
 * @create 2021 01 2021/1/8 13:26
 */

public class TransactionManager {
    @Bean(name ="transactionManager" )
    public PlatformTransactionManager createTransactionManager(DataSource dataSource){
        return  new DataSourceTransactionManager(dataSource);
    }
}

5.将各项配置导入spring配置类中

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.PropertySource;

import org.springframework.transaction.annotation.EnableTransactionManagement;

/**
 * @author Mr Z
 * @create 2021 01 2021/1/8 12:37
 */
@Configuration
@ComponentScan("com.xszx")
@Import({JdbcConfig.class,TransactionManager.class})
@PropertySource("db.properties")
@EnableTransactionManagement
public class SpringConfiguration {
}

6.Dao层和业务层同上,注:业务层与xml配置方式不同点在于

@ContextConfiguration(classes= SpringConfiguration.class)

ItVuer - 免责声明 - 关于我们 - 联系我们

本网站信息来源于互联网,如有侵权请联系:561261067@qq.com

桂ICP备16001015号