一、事务概述:
1.什么是事务:
一件事情有n个组成单元 要不这n个组成单元同时成功 要不n个单元就同时失败
就是将n个组成单元放到一个事务中
2.mysql的事务:
默认的事务:一条sql语句就是一个事务 默认就开启事务并提交事务。
手动事务:
1)显示的开启事务:
start transaction
2)事务提交:代表从开启事务到事务提交 中间的所有的sql都认为有效 真正的更新数据库
commit
3)事务的回滚: 代表事务的回滚 从开启事务到事务回滚 中间的所有的 sql操作都认为无效数据库没有被更新
rollback
二、JDBC事务操作:
默认自动事务:
执行sql语句:executeUpdate() ---- 每执行一次executeUpdate方法 代表事务自动提交.
通过jdbc的API手动事务:
开启事务:conn.setAutoComnmit(false);
提交事务:conn.commit();
回滚事务:conn.rollback();
注意:控制事务的connnection必须是同一个;
执行sql的connection与开启事务的connnection必须是同一个才能对事务进行控制。
三、DBUtils事务操作:
QueryRunner:
有参构造:QueryRunner runner = new QueryRunner(DataSource dataSource);
有参构造将数据源(连接池)作为参数传入QueryRunner,QueryRunner会从连 接池中获得一个数据库连接资源操作数据库,所以直接使用无Connection参数 的update方法即可操作数据库。
无参构造:QueryRunner runner = new QueryRunner();
无参的构造没有将数据源(连接池)作为参数传入QueryRunner,那么我们在使 用QueryRunner对象操作数据库时要使用有Connection参数的方法。
四、使用ThreadLocal绑定连接资源:
注意:在同一个项目中,不管业务有多复杂,只要我们不手动创建线程,那么各个方法互相调用都在同一个线程中,这为我们线程绑定提供了前提条件。
五、事务的特性和隔离级别:
1.事务的特性ACID:
1)原子性(Atomicity):原子性是指事务是一个不可分割的工作单位,事务中的操作要么都发生,要么都不发生。
2)一致性(Consistency):一个事务中,事务前后数据的完整性必须保持一致。
3)隔离性(Isolation):多个事务,事务的隔离性是指多个用户并发访问数据库时, 一个用户的 事务不能被其它用户的事务所干扰,多个并发事务之间数据要相互隔离。
4)持久性(Durability):持久性是指一个事务一旦被提交,它对数据库中数据的改变 就是永久性的,接下来即使数据库发生故障也不应该对其有任何影响。
2.并发访问问题----由隔离性引起:
如果不考虑隔离性,事务存在3中并发访问问题。
1)脏读:B事务读取到了A事务尚未提交的数据 ------ 要求B事务要读取A事 务提交的数据;
2)不可重复读:一个事务中两次读取的数据的内容不一致 ----- 要求的是一个事 务中多次读取时数据是一致的 --- unpdate;
3)幻读/虚读:一个事务中两次读取的数据的数量不一致 ----- 要求在一个事务多 次读取的数据的数量是一致的 --insert delete。
3.事务的隔离级别:
1)read uncommitted : 读取尚未提交的数据 :哪个问题都不能解决
2)read committed:读取已经提交的数据 :可以解决脏读 ---- oracle默认的
3)repeatable read:重读读取:可以解决脏读 和 不可重复读 ---mysql默认的
4)serializable:串行化:可以解决 脏读 不可重复读 和 虚读---相当于锁表
注意:mysql数据库默认的隔离级别
查看mysql数据库默认的隔离级别:
select @@tx_isolation
设置mysql的隔离级别:
set session transaction isolation level
案例实现:
MyDataSourceUtils.java
package com.zl.utils;
import java.sql.Connection;
import java.sql.SQLException;
import com.mchange.v2.c3p0.ComboPooledDataSource;
public class MyDataSourceUtils {
//获得Connection,从连接池中获取
private static ComboPooledDataSource dataSource = new ComboPooledDataSource();
//创建ThreadLocal
private static ThreadLocal<Connection> tl = new ThreadLocal<Connection>();
//开启事务
public static void startTransaction() throws SQLException{
Connection conn = getCurrentConnection();
conn.setAutoCommit(false);
}
//获得当前线程绑定的conn
public static Connection getCurrentConnection() throws SQLException{
//从ThreadLocal中寻找当前线程是否有对应Connection
Connection conn = tl.get();
if(conn==null){
//获得一个新的Connection
conn=getConnection();
//将conn资源绑定到ThreadLocal上
tl.set(conn);
}
return conn;
}
public static Connection getConnection() throws SQLException{
return dataSource.getConnection();
}
//回滚事务
public static void rollback() throws SQLException {
getCurrentConnection().rollback();
}
//提交事务
public static void commit() throws SQLException {
Connection conn = getCurrentConnection();
conn.commit();
tl.remove();
conn.close();
}
}
TransferServlet.java
package com.zl.transfer.web;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.zl.transfer.service.TransferService;
public class TransferServlet extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//接收转账的参数
String out = request.getParameter("out");
String in = request.getParameter("in");
String moneyStr = request.getParameter("money");
double money = Double.parseDouble(moneyStr);
TransferService service = new TransferService();
boolean isTransferSuccess = service.transfer(out,in,money);
response.setContentType("text/html;charset=UTF-8");
if(isTransferSuccess){
response.getWriter().write("转账成功");
}else{
response.getWriter().write("转账失败");
}
}
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doGet(request, response);
}
}
TransferService.java
package com.zl.transfer.web;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.zl.transfer.service.TransferService;
public class TransferServlet extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//接收转账的参数
String out = request.getParameter("out");
String in = request.getParameter("in");
String moneyStr = request.getParameter("money");
double money = Double.parseDouble(moneyStr);
TransferService service = new TransferService();
boolean isTransferSuccess = service.transfer(out,in,money);
response.setContentType("text/html;charset=UTF-8");
if(isTransferSuccess){
response.getWriter().write("转账成功");
}else{
response.getWriter().write("转账失败");
}
}
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doGet(request, response);
}
}
TransferDao.java
package com.zl.transfer.dao;
import java.sql.Connection;
import java.sql.SQLException;
import org.apache.commons.dbutils.QueryRunner;
import com.zl.utils.DataSourceUtils;
import com.zl.utils.MyDataSourceUtils;
public class TransferDao {
public void out(String out, double money) throws SQLException {
QueryRunner runner = new QueryRunner();
Connection conn = MyDataSourceUtils.getCurrentConnection();
String sql = "update account set money=money-? where name=?";
runner.update(conn, sql, money,out);
}
public void in(String in, double money) throws SQLException {
QueryRunner runner = new QueryRunner();
Connection conn = MyDataSourceUtils.getCurrentConnection();
String sql = "update account set money=money+? where name=?";
runner.update(conn, sql, money,in);
}
}