13.声明式事务
13.1.回顾事务
- 把一组业务当成一个业务来做,要么都成功,要么都失败!
- 事务在项目开发中,十分的重要,涉及到数据的一致性问题,不能马虎!
- 确保完整性和一致性;
事务的ACID原则:
-
原子性
-
一致性
-
隔离性
1.多个业务可能操作同一个资源,防止数据损坏
-
持久性
1.事务一旦提交,无论系统发生什么问题,结果都不会再被影响,被持久化的写到存储器中
13.2.Spring中的事务管理
- 声明式事务:AOP
- 编程式事务:需要在代码中,进行事务管理
配置声明式事务代码梳理:
1.接口(UserMapper)
public interface UserMapper {
public List<User> selectUser();
//添加一个用户
public int addUser( User user);
//删除一个用户
public int deleteId(int id);
}
2.UserMapper.xml
<mapper namespace="com.itxiaofei.mapper.UserMapper">
<select id="selectUser" resultType="user">
select * from mybatis.user
</select>
<insert id="addUser" parameterType="user">
insert into mybatis.user (id, name, pwd) values (#{id}, #{name} , #{pwd});
</insert>
<!--注:这里delete的sql语句有误应为delete from***
写错是为了更好的体会事务的作用
无事务就算delete方法错误,也依旧会插入数据!-->
<delete id="deleteId" parameterType="int">
deletes from mybatis.user where id =#{id}
</delete>
</mapper>
3.接口的实现类(UserMapperImpl)
public class UserMapperImpl extends SqlSessionDaoSupport implements UserMapper{
public List<User> selectUser() {
User user = new User(7, "小王", "123456");
UserMapper mapper = getSqlSession().getMapper(UserMapper.class);
mapper.addUser(user);
mapper.deleteId(7);
return mapper.selectUser();
}
public int addUser(User user) {
return getSqlSession().getMapper(UserMapper.class).addUser(user);
}
public int deleteId(int id) {
return getSqlSession().getMapper(UserMapper.class).deleteId(id);
}
}
4.ApplicationContext-Mybatis.xml
<?xml version="1.0" encoding="UTF8"?>
<beans xmlns="<http://www.springframework.org/schema/beans>"
xmlns:xsi="<http://www.w3.org/2001/XMLSchema-instance>"
xmlns:aop="<http://www.springframework.org/schema/aop>"
xsi:schemaLocation="<http://www.springframework.org/schema/beans>
<https://www.springframework.org/schema/beans/spring-beans.xsd>
<http://www.springframework.org/schema/tx>
<https://www.springframework.org/schema/tx/spring-tx.xsd>
<http://www.springframework.org/schema/aop>
<https://www.springframework.org/schema/aop/spring-aop.xsd>"
xmlns:tx="<http://www.springframework.org/schema/tx>"
>
<!--DataSource:使用Spring的数据源替换Mybatis的配置 c3p0 dbcp druid
我们这里使用Spring提供的JDBC:org.springframework.jdbc.datasource.DriverManagerDataSource
-->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=false&userUnicode=ture&characterEncoding=UTF-8"/>
<property name="username" value="root"/>
<property name="password" value="123456"/>
</bean>
<!--sqlSessionFactory-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<!--绑定mybatis配置文件-->
<property name="configLocation" value="classpath:mybatis-config.xml"/>
<property name="mapperLocations" value="classpath:com/itxiaofei/mapper/*.xml"/>
</bean>
<!--创建sqlSessionFactory对象-->
<bean id="sqlSessionTemplate" class="org.mybatis.spring.SqlSessionTemplate">
<constructor-arg index="0" ref="sqlSessionFactory"/>
</bean>
<!--配置声明式事务-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<constructor-arg name="dataSource" ref="dataSource"/>
</bean>
<!--结合AOP方法进行织入-->
<!--配置事务通知:-->
<tx:advice id="TxAdvice" transaction-manager="transactionManager">
<!--给那些方法配置事务-->
<!--配置书屋的传播特效: new -->
<tx:attributes>
<tx:method name="add" propagation="REQUIRED"/>
<tx:method name="delete" propagation="REQUIRED"/>
<tx:method name="update" propagation="REQUIRED"/>
<tx:method name="query" propagation="REQUIRED"/>
<tx:method name="*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>
<!--配置事务的切入-->
<aop:config>
<aop:pointcut id="txPointCut" expression="execution(* com.itxiaofei.mapper.*.*(..))"/>
<aop:advisor advice-ref="TxAdvice" pointcut-ref="txPointCut"/>
</aop:config>
</beans>
5.测试类
public class MyTest {
@Test
public void selectUser(){
ApplicationContext context = new ClassPathXmlApplicationContext("ApplicationContext.xml");
UserMapper userMapper = context.getBean("userMapper", UserMapper.class);
List<User> userList = userMapper.selectUser();
for (User user : userList) {
System.out.println(user);
}
}
}
思考:
为什么需要事务:
- 如果不配置事务,可能存在数据提交不一致的情况
- 如果我们不在Spring中去配置声明式事务,我们就需要在代码中手动配置事务
- 事务在项目的开发中十分重要,涉及到数据的一致性和完整性问题,不容马虎!