真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SSM框架中使用Spring的@Transactional注解進(jìn)行事務(wù)管理

一 介紹

在企業(yè)級應(yīng)用中,保護(hù)數(shù)據(jù)的完整性是非常重要的一件事。因此不管應(yīng)用的性能是多么的高、界面是多么的好看,如果在轉(zhuǎn)賬的過程中出現(xiàn)了意外導(dǎo)致用戶的賬號金額發(fā)生錯(cuò)誤,那么這樣的應(yīng)用程序也是不可接受的

成都創(chuàng)新互聯(lián)自成立以來,一直致力于為企業(yè)提供從網(wǎng)站策劃、網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、成都網(wǎng)站制作、電子商務(wù)、網(wǎng)站推廣、網(wǎng)站優(yōu)化到為企業(yè)提供個(gè)性化軟件開發(fā)等基于互聯(lián)網(wǎng)的全面整合營銷服務(wù)。公司擁有豐富的網(wǎng)站建設(shè)和互聯(lián)網(wǎng)應(yīng)用系統(tǒng)開發(fā)管理經(jīng)驗(yàn)、成熟的應(yīng)用系統(tǒng)解決方案、優(yōu)秀的網(wǎng)站開發(fā)工程師團(tuán)隊(duì)及專業(yè)的網(wǎng)站設(shè)計(jì)師團(tuán)隊(duì)。

數(shù)據(jù)庫的事務(wù)管理可以有效地保護(hù)數(shù)據(jù)的完整性(PS:關(guān)于數(shù)據(jù)庫的事務(wù)管理基礎(chǔ)可以參考我以前寫過的這篇文章:http://www.zifangsky.cn/385.html),但是原生態(tài)的事務(wù)操作需要寫不少的代碼,無疑是非常麻煩的。在使用了Spring框架的應(yīng)用中,我們可以使用@Transactional 注解方便地進(jìn)行事務(wù)操作,如事務(wù)的回滾等。接下來我將以SSM框架中的事務(wù)注解操作進(jìn)行舉例說明:

二 測試項(xiàng)目的搭建

(1)項(xiàng)目結(jié)構(gòu)和用到的jar包:

SSM框架中使用Spring的@Transactional注解進(jìn)行事務(wù)管理  SSM框架中使用Spring的@Transactional注解進(jìn)行事務(wù)管理

(2)測試使用到的SQL文件:

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(32) DEFAULT NULL,
  `password` varchar(64) DEFAULT NULL,
  `email` varchar(64) DEFAULT NULL,
  `birthday` date DEFAULT NULL,
  `money` decimal(15,2) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('1', 'admin', '123456', 'admin@qq.com', '2000-01-02', '1000.00');
INSERT INTO `user` VALUES ('2', 'test', '1234', 'test@zifangsky.cn', '1990-12-12', '2500.00');
INSERT INTO `user` VALUES ('3', 'xxxx', 'xx', 'xx@zifangsky.cn', '1723-06-21', '4000.00');

(3)使用mybatis-generator結(jié)合Ant腳本快速自動(dòng)生成Model、Mapper等文件:

關(guān)于這方面可以參考我以前寫過的一篇文章,這里就不多說了,傳送門:http://www.zifangsky.cn/431.html

(4)一些基礎(chǔ)配置文件:

i)web.xml:



	
		contextConfigLocation
		
			classpath:context/context.xml
		
	
	
	
		org.springframework.web.context.ContextLoaderListener
	
	
		org.springframework.web.context.request.RequestContextListener
	
	
	
		springmvc
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath:context/jsp-dispatcher.xml
		
		1
	

	
		springmvc
		*.html
	
	
	
		characterEncodingFilter
		org.springframework.web.filter.CharacterEncodingFilter
		
			encoding
			UTF-8
		
	
	
		characterEncodingFilter
		/*
	

ii)jdbc配置文件jdbc.properties:

master.jdbc.driverClassName=com.MySQL.jdbc.Driver
master.jdbc.url=jdbc:mysql://127.0.0.1:3306/transaction
#user
master.jdbc.username=root
master.jdbc.password=root

iii)context.xml:




	
	

	
		
			
				classpath:jdbc.properties
			
		
	

	
	

		
			${master.jdbc.driverClassName}
		
		
			${master.jdbc.url}
		
		
			${master.jdbc.username}
		
		
			${master.jdbc.password}
		
		
		
			5
		
		
		
			30
		
		
		
			10
		
		
		
			60
		
		
		
			5
		
		
		
			0
		
		
		
			60
		
		
		
			30
		
		
		
			true
		
		
		
			false
		
	

	
	
		
		
	
	
		
		
	

	
		
	

	
	
		
	
	
	

在上面的配置中,使用了C3P0作為數(shù)據(jù)庫連接池,同時(shí)定義了自動(dòng)掃描注解,Mybatis相關(guān)配置以及申明式事務(wù)管理,如果對這些基礎(chǔ)不太熟的話可以參考下我以前寫過的一些文章

iv)jsp-dispatcher.xml:




	

	  

	
	

	
	
		
			/WEB-INF/jsp/
		
		
			.jsp
		
	

v)sql-map-config.xml:




	
		
		
		
		
		
		
		
		
		
		
		
		
		
		
	
	
		
		
	

(5)測試搭建的項(xiàng)目環(huán)境:

i)在UserManager.java接口中添加幾個(gè)基本的接口:

public interface UserManager {
	int deleteByPrimaryKey(Integer id);

	int insert(User record);

	int insertSelective(User record);

	User selectByPrimaryKey(Integer id);

	int updateByPrimaryKeySelective(User record);

	int updateByPrimaryKey(User record);
}

ii)UserManagerImpl.java:

package cn.zifangsky.manager.impl;

import java.math.BigDecimal;

import javax.annotation.Resource;

import org.apache.ibatis.jdbc.RuntimeSqlException;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import cn.zifangsky.manager.UserManager;
import cn.zifangsky.mapper.UserMapper;
import cn.zifangsky.model.User;

@Service(value="userManagerImpl")
public class UserManagerImpl implements UserManager{
	@Resource(name="userMapper")
	private UserMapper userMapper;
		
	public int deleteByPrimaryKey(Integer id) {
		return 0;
	}

	public int insert(User record) {
		return 0;
	}

	public int insertSelective(User record) {
		return 0;
	}

	public User selectByPrimaryKey(Integer id) {		
		return userMapper.selectByPrimaryKey(id);
	}

	public int updateByPrimaryKeySelective(User record) {
		return 0;
	}

	public int updateByPrimaryKey(User record) {
		return 0;
	}
}

iii)UserController.java:

package cn.zifangsky.controller;

import java.math.BigDecimal;

import javax.annotation.Resource;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;

import cn.zifangsky.manager.UserManager;
import cn.zifangsky.model.User;

@Controller
public class UserController {
	@Resource(name = "userManagerImpl")
	private UserManager userManager;

	@RequestMapping(value = "/select")
	public String user(@RequestParam(name = "userId", required = false) Integer userId) {
		User user = userManager.selectByPrimaryKey(userId);

		System.out.println("用戶名: " + user.getName());
		System.out.println("郵箱: " + user.getEmail());

		return "success";
	}

}

iv)啟動(dòng)項(xiàng)目并進(jìn)行測試:

項(xiàng)目啟動(dòng)后訪問:http://localhost:8090/TransactionDemo/select.html?userId=2 ,如果發(fā)現(xiàn)控制臺中輸出如下則說明測試環(huán)境已經(jīng)搭建成功了:

用戶名: test
郵箱: test@zifangsky.cn

三 使用@Transactional注解管理事務(wù)示例

(1)在UserManager接口中添加一個(gè)如下方法:

/**
	 * 轉(zhuǎn)賬
	 * 
	 * @param sourceAccountId
	 *            源賬戶
	 * @param targetAccountId
	 *            目標(biāo)賬戶
	 * @param amount
	 *            轉(zhuǎn)賬金額
	 */
	void transferMoney(Integer sourceAccountId, Integer targetAccountId, BigDecimal amount);

此方法目的是為了模擬轉(zhuǎn)賬操作

(2)在UserManagerImpl實(shí)現(xiàn)類中添加對用的實(shí)現(xiàn)方法:

@Transactional(rollbackFor=Exception.class)
	public void transferMoney(Integer sourceAccountId, Integer targetAccountId, BigDecimal amount) {
		User sourceAccount = userMapper.selectByPrimaryKey(sourceAccountId);
		User targetAccount = userMapper.selectByPrimaryKey(targetAccountId);
		
		BigDecimal sourceMoney = sourceAccount.getMoney();
		BigDecimal targetMoney = targetAccount.getMoney();
		
		//判斷賬戶余額是否足夠
		if(sourceMoney.compareTo(amount) > 0){
			sourceAccount.setMoney(sourceMoney.subtract(amount));
			targetAccount.setMoney(targetMoney.add(amount));
			//更新數(shù)據(jù)庫
			userMapper.updateByPrimaryKeySelective(sourceAccount);
			throw new RuntimeSqlException("手動(dòng)模擬轉(zhuǎn)賬時(shí)出現(xiàn)異常");
//			userMapper.updateByPrimaryKeySelective(targetAccount);
	
		}
	}

可以看出,在這個(gè)方法上面申明了一個(gè)@Transactional,表明這個(gè)方法將要進(jìn)行事務(wù)管理,同時(shí)需要說明的是rollbackFor參數(shù)定義了在出現(xiàn)了什么異常時(shí)進(jìn)行事務(wù)的回滾,顯然這里定義的就是所有的Exception都要進(jìn)行事務(wù)回滾。與之相反的一個(gè)參數(shù)是norollbackFor,這里就不多說了。對于@Transactional注解我們不僅可以在一個(gè)方法上放置,而且可以在類上進(jìn)行申明。如果在類級別上使用該注解,那么類中的所有公共方法都被事務(wù)化,否則就只有使用了@Transactional注解的公共方法才被事務(wù)化

在這個(gè)方法中為了模擬轉(zhuǎn)賬出現(xiàn)異常,因此在第一個(gè)賬戶進(jìn)行更新后就手動(dòng)拋出了一個(gè)異常

(3)在UserController類中添加一個(gè)模擬轉(zhuǎn)賬的方法:

@RequestMapping(value = "/transfer")
	public String transfer(@RequestParam(name = "account1") Integer account1,
			@RequestParam(name = "account2") Integer account2, @RequestParam(name = "amount") Long amount) {
		System.out.println("轉(zhuǎn)賬之前:");
		System.out.println("賬戶一的資金:" + userManager.selectByPrimaryKey(account1).getMoney().longValue());
		System.out.println("賬戶二的資金:" + userManager.selectByPrimaryKey(account2).getMoney().longValue());

		// 轉(zhuǎn)賬
		userManager.transferMoney(account1, account2, BigDecimal.valueOf(amount));

		System.out.println("轉(zhuǎn)賬之后:");
		System.out.println("賬戶一的資金:" + userManager.selectByPrimaryKey(account1).getMoney().longValue());
		System.out.println("賬戶二的資金:" + userManager.selectByPrimaryKey(account2).getMoney().longValue());

		return "success";
	}

(4)效果測試:

項(xiàng)目運(yùn)行后訪問:http://localhost:8090/TransactionDemo/transfer.html?account1=1&account2=2&amount=500

可以發(fā)現(xiàn)項(xiàng)目會(huì)進(jìn)行保存,這時(shí)我們查看數(shù)據(jù)庫中看看賬戶1和賬戶2中的金額有沒有發(fā)生變化:

SSM框架中使用Spring的@Transactional注解進(jìn)行事務(wù)管理

可以看出,兩者的金額都沒有發(fā)生改變,說明事物的確進(jìn)行了回滾。當(dāng)然,有興趣的同學(xué)可以把UserManagerImpl中那個(gè) @Transactional  注解給去掉看看數(shù)據(jù)庫中的這個(gè)金額在執(zhí)行“轉(zhuǎn)賬”后又會(huì)不會(huì)發(fā)生改變?


當(dāng)前名稱:SSM框架中使用Spring的@Transactional注解進(jìn)行事務(wù)管理
鏈接地址:http://weahome.cn/article/piddeo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部