1. 程式人生 > >Spring入門第二十六課

Spring入門第二十六課

code message manage todo system framework auto manager isbn

Spring中的事務管理

事務簡介

事務管理是企業級應用程序開發中必不可少的技術,用來確保數據的完整性和一致性。

事務就是一系列的動作,他們被當做一個單獨的工作單元,這些動作要麽全部完成,要麽全部不起作用。

事務的四個關鍵屬性(ACID)

-原子性(atomicity):事務是一個原子操作,由一系列動作組成,事務的原子性確保動作要麽全部完成,要麽完全不起作用。

-一致性(consistency):一旦所有事務動作完成,事務就被提交,數據和資源就處於一種滿足業務規則的一致性狀態中。

-隔離性(isolation):可能有許多事務會同時處理相同的數據,因此每個事務都應該與其他事務隔離開來,防止數據損壞

-持久性(durability):一旦事務完成,無論發生什麽系統錯誤,它的結果都不應該受到影響,通常情況下,事務的結果被寫到持久化存儲器中。

作為企業級應用程序框架,Spring在不同的事務管理API紙上定義了一個抽象層,而應用程序開發人員不必了解底層的事務管理API,就可以使用Spring的事務管理機制。

Spring即支持編程式事務管理,也支持聲明式事務管理。

編程式事務管理:將事務管理代碼嵌入到業務方法中來控制事務的提交和回滾,在編程式管理事務時,必須在每個事務操作中包含而外的事務管理代碼。

聲明式事務管理:大多數情況下,比編程式事務管理更好用,它將事務管理代碼從業務方法中分離出來,以聲明的方式來實現事務管理。事務管理作為一種橫切關註點,可以通過AOP方法模塊化,Spring通過Spring AOP框架支持生命是事務管理。

Spring從不同的事務管理API中抽象了一整套的事務機制,開發人員不必了解底層食物API,就可以利用這些事務機制。有了這些事務機制,事務管理代碼就能獨立於特定的事務技術了。

Spring的核心事務管理抽象是org.springframework.transaction.interface.Plateform.TransactionManager管理封裝了一組獨立於技術的方法,無論使用Spring的哪種書屋管理策略(編程式或聲明式),事務管理器都是必須的。

先看事務準備

看代碼:

db.properties

jdbc.user=root
jdbc.password=logan123
jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.jdbcUrl=jdbc:mysql://localhost:3306/spring

jdbc.initPoolSize=5
jdbc.maxPoolSize=10

applicationContext.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: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-4.3.xsd">

    <context:component-scan base-package="logan.study.spring.tx"></context:component-scan>

    <!-- 導入資源文件 -->
    <context:property-placeholder location="classpath:db.properties"/>

    <!-- 配置C3P0數據源 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="user" value="${jdbc.user}"></property>
        <property name="password" value="${jdbc.password}"></property>
        <property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property>
        <property name="driverClass" value="${jdbc.driverClass}"></property>
        
        <property name="initialPoolSize" value="${jdbc.initPoolSize}"></property>
        <property name="maxPoolSize" value="${jdbc.maxPoolSize}"></property>
    </bean>
    
    <!-- 配置Spring的JDBCTemplate -->
    <bean id="jdbcTemplate"
    class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
    <!-- 配置NamedParameterJdbcTemplate,該對象可以使用具名參數,其沒有無參的構造器,所以必須為其構造器指定參數 -->
    <bean id="namedParameterJdbcTemplate"
    class="org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate">
        <constructor-arg ref="dataSource"></constructor-arg>
    </bean>
</beans>
package logan.study.spring.tx;

public interface BookShopDao {
    //根據書號獲取書的單價
    public int findBookPriceIsbn(String isbn);
    
    //更新書的庫存,使書號對應的庫存-1
    public void updateBookStock(String isbn);
    
    
    public void updateUserAccount(String username,int price);

}
package logan.study.spring.tx;

public class BookStockException extends RuntimeException{

    public BookStockException() {
        super();
        // TODO Auto-generated constructor stub
    }

    public BookStockException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
        // TODO Auto-generated constructor stub
    }

    public BookStockException(String message, Throwable cause) {
        super(message, cause);
        // TODO Auto-generated constructor stub
    }

    public BookStockException(String message) {
        super(message);
        // TODO Auto-generated constructor stub
    }

    public BookStockException(Throwable cause) {
        super(cause);
        // TODO Auto-generated constructor stub
    }
    
    

}
package logan.study.spring.tx;

public class UserAccountException extends RuntimeException{

    public UserAccountException() {
        super();
        // TODO Auto-generated constructor stub
    }

    public UserAccountException(String message, Throwable cause, boolean enableSuppression,
            boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
        // TODO Auto-generated constructor stub
    }

    public UserAccountException(String message, Throwable cause) {
        super(message, cause);
        // TODO Auto-generated constructor stub
    }

    public UserAccountException(String message) {
        super(message);
        // TODO Auto-generated constructor stub
    }

    public UserAccountException(Throwable cause) {
        super(cause);
        // TODO Auto-generated constructor stub
    }
    
    

}
package logan.study.spring.tx;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Repository;

@Repository("bookShopDao")
public class BookShopDaoImpl implements BookShopDao {
    
    @Autowired
    private JdbcTemplate jdbcTemplate;

    @Override
    public int findBookPriceIsbn(String isbn) {
        // TODO Auto-generated method stub
        String sql = "SELECT price FROM book WHERE isbn=?";
        return jdbcTemplate.queryForObject(sql, Integer.class, isbn);
    }

    @Override
    public void updateBookStock(String isbn) {
        // TODO Auto-generated method stub
        //檢查書的庫存是否足夠,若不夠,則拋出異常
        String sql2 = "SELECT stock FROM book_stock WHERE isbn = ?";
        int stock = jdbcTemplate.queryForObject(sql2, Integer.class, isbn);
        if(stock == 0){
            throw new BookStockException("庫存不足!");
        }
        String sql = "UPDATE book_stock SET stock = stock -1 WHERE isbn = ?";
        jdbcTemplate.update(sql, isbn);

    }

    @Override
    public void updateUserAccount(String username, int price) {
        // TODO Auto-generated method stub
        //檢查書的庫存是否足夠,若不夠,則拋出異常
        String sql2 = "SELECT balance FROM account WHERE username = ?";
        int balance = jdbcTemplate.queryForObject(sql2, Integer.class, username);
        if(balance < price){
            throw new UserAccountException("余額不足!");
        }
        String sql = "UPDATE account SET balance = balance - ? WHERE username = ?";
        jdbcTemplate.update(sql, price, username);

    }

}
package logan.study.spring.tx;

public interface BookShopService {
    
    public void purchase(String username, String isbn);

}
package logan.study.spring.tx;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service("bookShopService")
public class BookShopServiceImpl implements BookShopService {
    
    @Autowired
    private BookShopDao bookShopDao;

    @Override
    public void purchase(String username, String isbn) {
        // TODO Auto-generated method stub
        //1.獲取書的單價
        int price = bookShopDao.findBookPriceIsbn(isbn);
        //2.更新書的庫存
        bookShopDao.updateBookStock(isbn);
        //3.更新用戶余額
        bookShopDao.updateUserAccount(username, price);
        

    }

}
package logan.study.spring.tx;

import static org.junit.Assert.*;

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.jdbc.core.JdbcTemplate;

public class SpringTransactionTest {
    
    private ApplicationContext ctx = null;
    private BookShopDao bookShopDao = null;
    private BookShopService bookShopService = null;
    {
        ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
        bookShopDao = ctx.getBean(BookShopDao.class);
        bookShopService = ctx.getBean(BookShopService.class);
    }
    
    @Test
    public void testBookShopService(){
        bookShopService.purchase("AA", "1001");
    }
    
    
    @Test
    public void testBookShopDaoUpdateUserAcount(){
        bookShopDao.updateUserAccount("AA", 100);
    }
    
    @Test
    public void testBookShopDaoUpdateBookStock(){
        bookShopDao.updateBookStock("1001");
    }
    
    @Test
    public void testBookShopDaoFindPriceByIsbn(){
        System.out.println(bookShopDao.findBookPriceIsbn("1001"));
    }

    @Test
    public void test() {
        fail("Not yet implemented");
    }

}

可以看到在service裏面買書時,不是事務的,所以如果用戶的余額不足時,書的庫存減少了,但是用戶的余額沒減少,拋出異常。

Spring入門第二十六課