springboot mysql事物_springboot mybatis 事务管理

本文详细介绍了如何在SpringBoot中配置和管理Mybatis的事务,包括依赖引入、配置文件设置、Service层使用@Transactional注解以及事务管理的测试。通过声明式事务管理,实现了非侵入式的方法级事务回滚,确保了业务操作的原子性。
摘要由CSDN通过智能技术生成

本文主要讲述springboot提供的声明式的事务管理机制。

一、一些概念

声明式的事务管理是基于AOP的,在springboot中可以通过@Transactional注解的方式获得支持,这种方式的优点是:

1)非侵入式,业务逻辑不受事务管理代码的污染。

2)方法级别的事务回滚,合理划分方法的粒度可以做到符合各种业务场景的事务管理。

本文使用目前最常用的mybatis框架来配置springboot的事务管理机制。下面进入配置方法介绍。

二、springboot mybatis事务配置

1、看一下pom依赖

其中:

1)标签引入springboot父依赖

2)使用了spring和mybatis集成包,整合spring和mybatis

3)mysql数据库驱动包

4)序列化支持fastjson

org.springframework.boot

spring-boot-starter-parent

1.4.3.RELEASE

org.springframework.boot

spring-boot-starter-web

org.mybatis.spring.boot

mybatis-spring-boot-starter

1.1.1

org.springframework.boot

spring-boot-starter-jdbc

mysql

mysql-connector-java

com.alibaba

fastjson

1.2.19

2、application.properties

# 主数据源 moonlight

spring.datasource.moonlight.driverClassName = com.mysql.jdbc.Driver

spring.datasource.moonlight.url=jdbc:mysql://10.93.84.53:3306/moonlight?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&autoReconnect=true&failOverReadOnly=false

spring.datasource.moonlight.username = root

spring.datasource.moonlight.password = 1234

spring.datasource.moonlight.poolMaximumActiveConnections=400

spring.datasource.moonlight.poolMaximumIdleConnections=200

spring.datasource.moonlight.poolMaximumCheckoutTime=20000

之后你可以根据添加的数据源,写好mapper也就是dao层代码。

DAO层代码是使用XML配置方式,还是使用注解实现方式,对事务管理都是没有影响的。

3、Service层

在设计service层的时候,应该合理的抽象出方法包含的内容。

然后将方法用@Trasactional注解注释,默认的话在抛出Exception.class异常的时候,就会触发方法中所有数据库操作回滚,当然这指的是增、删、改。

当然,@Transational方法是可以带参数的,具体的参数解释如下:

属性类型描述

value

String

可选的限定描述符,指定使用的事务管理器

propagation

enum: Propagation

可选的事务传播行为设置

isolation

enum: Isolation

可选的事务隔离级别设置

readOnly

boolean

读写或只读事务,默认读写

timeout

int (in seconds granularity)

事务超时时间设置

rollbackFor

Class对象数组,必须继承自Throwable

导致事务回滚的异常类数组

rollbackForClassName

类名数组,必须继承自Throwable

导致事务回滚的异常类名字数组

noRollbackFor

Class对象数组,必须继承自Throwable

不会导致事务回滚的异常类数组

noRollbackForClassName

类名数组,必须继承自Throwable

不会导致事务回滚的异常类名字数组

给出一些示例代码

@Servicepublic classGeoFenceService {

@AutowiredprivateMoonlightMapper moonlightMapper;

@Transactionalpublic intaddGeoFence(GeoFence geoFence) {

String formatTime=TimeFunction.transTimeToFormatPerfect(System.currentTimeMillis());

geoFence.setCreateTime(formatTime);

geoFence.setUpdateTime(formatTime);returnmoonlightMapper.insertOne(geoFence);

}

@Transactionalpublic int batchGeoFence(ListgeoFenceList) {

String formatTime=TimeFunction.transTimeToFormatPerfect(System.currentTimeMillis());for(GeoFence geoFence : geoFenceList) {

geoFence.setCreateTime(formatTime);

geoFence.setUpdateTime(formatTime);

}returnmoonlightMapper.insertBatch(geoFenceList);

}

}

4、开启事务

最后你要在Application类中开启事务管理,开启事务管理很简单,只需要@EnableTransactionManagement注解就行

@EnableTransactionManagement

@SpringBootApplicationpublic classWebApplication {public static voidmain(String[] args) {

SpringApplication.run(WebApplication.class, args);

}

}

三、测试一下

可以做一个简单的测试,主动抛出异常,测试一下是否真的能保证事务性。

在执行完插入之后,手动抛出一个空指针异常,可以发现数据真的回滚了。

@Servicepublic classGeoFenceService {

@AutowiredprivateMoonlightMapper moonlightMapper;

@Transactionalpublic intaddGeoFence(GeoFence geoFence) {

String formatTime=TimeFunction.transTimeToFormatPerfect(System.currentTimeMillis());

geoFence.setCreateTime(formatTime);

geoFence.setUpdateTime(formatTime);int count =moonlightMapper.insertOne(geoFence);

String a= null;

a.indexOf('c');returncount;

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值