IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> Spring事务 -> 正文阅读

[Java知识库]Spring事务

目录

1 什么是事务

2 事务的特性(ACID)

3 事务的隔离级别(Isolation))

4 事务的传播行为(propagation)?

5 案例

1 创建数据库表语句

?2 编写spring.xml配置文件

3 创建dao层

4 创建service层

5 创建测试

6 测序结果

1 不开启注解扫描时

2 开启注解测试

?7 补充


1 什么是事务

事务是数据库操作最基本单元,逻辑上一组操作,要么都成功,如果有一个失败所有操
作都失败

2 事务的特性(ACID)

A(Atomicity)原子性:

一个事务必须被视为一个不可分割的最小工作单元,整个事务中的所有操作要么全部提交成功,要么全部失败回滚,对于一个事务来说,不可能只执行其中的一部分操作,这就是事务的原子性

C (Consistency) 一致性:

数据库总是从一个一致性的状态转换到另一个一致性的状态。

例如:转账过程系统崩了,A账户没有扣钱,B账户也没有多钱,因为没有提交事务

I (Isolation) 隔离性:

一个事务所做的修改操作在提交事务之前,对于其他事务来说是不可见的

例子:你们抓的人是周树人,和我鲁迅有什么关系

D (Durability)持久性

一旦事务提交,则其所做的修改会永久保存到数据库

3 事务的隔离级别(Isolation)

1)事务有特性成为隔离性,多事务操作之间不会产生影响。不考虑隔离性产生很多问题
2)有三个读问题:脏读、不可重复读、虚(幻)读
3)脏读:一个未提交事务读取到另一个未提交事务的数据
4)不可重复读:一个未提交事务读取到另一提交事务修改数据?
5)虚读:一个未提交事务读取到另一提交事务添加数据
6)解决:通过设置事务隔离级别,解决读问题

4 事务的传播行为(propagation)?

前两个最常用

required:如果有事务在运行,当前的方法就在这个事务中运行,如果没有则创建新的事务

required_new:当前的方法必须启动新的事务运行,如果当前有事务,则挂起

5 案例

描述:模拟一个简单的转账功能,并使用事务

1 创建数据库表语句

CREATE TABLE `account` (
  `username` varchar(255) NOT NULL,
  `account` double(255,0) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

?2 编写spring.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:util="http://www.springframework.org/schema/util"
       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/util http://www.springframework.org/schema/util/spring-util.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">


        <!--开启注解扫描
        1 如果扫描多个包,多个包使用逗号隔开
 2 扫描包上层目录-->
    <context:component-scan base-package="com.star"/>
    <!--开启aop注解扫描-->
    <aop:aspectj-autoproxy/>

    <!--配置数据源-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/ssm"/>
        <property name="username" value="root"/>
        <property name="password" value="zjx666888"/>
    </bean>

    <!--配置jdbcTemplate-->
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="dataSource"/>
    </bean>

    <!--创建事务管理器-->
    <bean id="manager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <!--注入数据源-->
        <property name="dataSource" ref="dataSource"/>

    </bean>
    <!--开启事务注解-->
    <tx:annotation-driven transaction-manager="manager"></tx:annotation-driven>


</beans>

3 创建dao层

//创建dao接口

package com.star.dao;

public interface AccountDao {

    public void transfer();

    public  void collect();
}



//创建dao实现类
package com.star.dao.impl;

import com.star.dao.AccountDao;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Repository;

@Repository
public class AccountDaoImpl implements AccountDao {
    @Autowired
    private JdbcTemplate jdbcTemplate;

    /**
     * 转账
     */
    @Override
    public void transfer() {
        String sql = "update Account set account = account - ? where username = ?";

        jdbcTemplate.update(sql,100,"zjx");
    }

    /**
     * 收款
     */
    @Override
    public void collect() {
        String sql = "update Account set account = account + ? where username = ?";
        jdbcTemplate.update(sql,100,"jwy");

    }
}

4 创建service层

//创建service接口
package com.star.service;

public interface AccountService {
    void transferAccounts();
}



//创建service接口实现类
package com.star.service.impl;

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

@Service
public class AccountServiceImpl implements AccountService {
    @Autowired
    private AccountDao accountDao;
    /**
     * 转账
     */
    @Override
    @Transactional //开启注解  当服务发生异常时自动回滚
    public void transferAccounts() {
        accountDao.transfer(); //转账
        int k = 10/0; //人为异常
        accountDao.collect(); //收款

    }
}

5 创建测试

@Test
    public void testAccount(){
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:spring6transaction.xml");
        AccountService accountService = applicationContext.getBean(AccountService.class);
        accountService.transferAccounts();
    }

6 测序结果

1 不开启注解扫描时

?

?

?

由此可见一个账户扣款了,一个账户未收到扣款,这样是万万不行滴。

2 开启注解测试

?

?7 补充

service 类上面(或者 service 类里面方法上面)添加事务注解
1 @Transactional ,这个注解添加到类上面,也可以添加方法上面
2 )如果把这个注解添加类上面,这个类里面所有的方法都添加事务
3 )如果把这个注解添加方法上面,为这个方法添加事务

?

?

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-11-20 18:15:31  更:2021-11-20 18:17:54 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 2:38:42-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码