一篇Spring带你快速入门

编程事务-基于transactionTemplate模板实现

2019-02-14  本文已影响0人  往事随风_0817

编程事务

编程事务-实现方式

  1. PlatformTransactionManager(平台事务管理器)
  2. TransactionTemplate(模板事务)
    Spring团队推荐使用transactionTemplate事务模板来实现事务

实现步骤

TransactionTemplate(模板事务)-实现

说明:

所需jar包
1.Spring(基础jar包) beans、core、context、expression
2.测试jar包 junit、spring-test
3.Spring集成Jdbc spring-jdbc、mysql-connector-java(驱动)
4.Spring-tx事务 spring-tx
5.连接池 commons-dbcp2、commons-pool
6.AOP spring-aop、aopalliance
7.aspectJ相关jar包 spring-aspects、aspectjweaver

本地数据库配置

driverClassName=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/books
username=root
password=root

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:p="http://www.springframework.org/schema/p"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <!--引入本地数据库配置-->
    <context:property-placeholder location="classpath:jdbc.properties" />
    <!--添加数据源-->
    <bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource"
        p:driverClassName="${driverClassName}" p:url="${url}" p:username="${username}" p:password="${password}"/>

    <!--jdbcTemplate-->
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate" p:dataSource-ref="dataSource"/>

    <!--jdbc事务管理器-->
    <bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager" p:dataSource-ref="dataSource" />

    <!--transactionTemplate事务模板-->
    <!--在此处以及设置所有方法为 只读 -->
    <bean id="transactionTemplate" class="org.springframework.transaction.support.TransactionTemplate"
          p:transactionManager-ref="dataSourceTransactionManager" p:readOnly="true"
    />
</beans>

测试类

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:Spring-tx.xml")
public class ProTransExample {
    @Resource(name = "transactionTemplate")
    private TransactionTemplate transactionTemplate;

    @Resource(name = "jdbcTemplate")
    private JdbcTemplate jdbcTemplate;

    /**
     * 说明:在配置transactionTemplate这个Bean时将该类的p:readOnly="true"
     *      所以会报这个错是正常的,这里只是做一个测试而已
     *  报错详细内容:
     *  PreparedStatementCallback; SQL [insert into books(isbn,name,price,pubdate) values(?,?,?,?)];                 Connection is read-only. Queries leading to data modification are not allowed; nested exception is java.sql.SQLException: Connection is read-only. Queries leading to data modification are not allowed
     *
     *   Connection is read-only. Queries leading to data modification are not allowed 这句话就已经说的很明显了
     */
    @Test
    public void save() {
        /**
         * 说明:
         *  如果你的方法需要返回值请使用这个类
         *      new TransactionCallback<Object>()
         *
         *  如果你的方法不需要返回值那么使用👇下面这个例子就可以了
         *      new TransactionCallbackWithoutResult()
         */
        transactionTemplate.execute(new TransactionCallbackWithoutResult(){
            @Override
            protected void doInTransactionWithoutResult(TransactionStatus transactionStatus) {
                String sql = "insert into books(isbn,name,price,pubdate) values(?,?,?,?)";
                jdbcTemplate.update(sql,"20-166-890-China","阿甘正传",99.00,new Date());
            }
        });
    }
}

编程事务总结

上一篇下一篇

猜你喜欢

热点阅读