1. 程式人生 > >spring(xml中的事務定義)

spring(xml中的事務定義)

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

在早期版本的Spring中,宣告事務需要裝配一個TransactionProxyFactoryBean的特殊Bean。會導致冗長的配置檔案。

spring現在提供了tx配置名稱空間,極大簡化spring中的宣告式事務

要注意的是,aop名稱空間也應該包括在內,因為有一些宣告式事務配置元素依賴於部分spring的AOP配置元素

tx名稱空間提供了一些新的xml配置元素,其中最值得注意的是<tx:advice>元素

當使用<tx:advice>來宣告事務時,還需要一個事務管理器。根據規定優於配置,<tx:advice>假定事務管理器被宣告為一個id為transactionManage的Bean.如果碰巧為事務管理器配置了不同id(如:txManage)則需要在transactionManage屬性中明確指定:

	<!-- 定義事務處理方式 -->
	<tx:advice id="txAdvice" transaction-manager="transactionManager">
		<tx:attributes>
			<tx:method name="delete*" propagation="REQUIRED" />
			<tx:method name="update*" propagation="REQUIRED" />
			<tx:method name="insert*" propagation="REQUIRED" />
			<tx:method name="ajax*" propagation="REQUIRED" />
			<tx:method name="query*" propagation="SUPPORTS" />
		</tx:attributes>
	</tx:advice>

但是<tx:advice>只是定義了AOP通知,但這只是事務通知,並不是完整的事務性切面,我們在<tx:advice>中沒有宣告哪些Bean應該被通知——所以需要一個切點來做這件事。

當然也可以不使用切點。

<tx:advice>配置元素極大地簡化了spring宣告式事務所需要的XML。但是還可以繼續簡化,tx名稱空間還提供了<tx:annotation-driven>元素,通常只需要一行XML元素

<tx:annotation-driven  />最多在指定一下特定的事務管理器

<tx:annotation-driven transaction-manager="txManager"/>

<tx:annotation-driven  />元素告訴spring檢查上下文中所有的Bean並查詢使用@Transactional註解的Bean。

注意:對於每一個使用@Transactional註解的Bean,<tx:annotation-driven  />負責為它自動新增事務通知(<tx:attributes>)

通知的事務屬性(<tx:method>)是通過@Transactional註解的引數來定義的

@Transactional(propagation=Propagation.SUPPORTS,readOnly=true)

//在類級別上使用@Transactional註解,表示所有的方法都支援事務,並且是隻讀。

@Service("userService")

@Scope("prototype")

public class UserServiceImp implements UserService(){

 ...........

 @Transactional(propagation=Propagation.REQUIRED,readOnly=false)

/在方法級別上,註解標識這個方法所需要的事務上下文

public void addUser(User user){.......................}

}