spring3.1+Atomikos 构建jta的分布式事务

spring3.1+Atomikos 构建jta的分布式事务

第一.下载Atomikos,需要以下这些包 

 

transactions-api.jar(必须)
transactions-hibernate2.jar
transactions-hibernate3.jar
transactions-jdbc-deprecated.jar
transactions-jdbc.jar(必须)
transactions-jms-deprecated.jar
transactions-jms.jar
transactions-jta.jar(必须)
transactions-osgi.jar(必须)
transactions.jar(必须)

   可以根据参与事务的资源和使用方式不同选择上面的不用jar。

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

	<context:property-placeholder
		location="classpath:jdbc.properties"
		ignore-unresolvable="true" />
		
		<!--数据源 couponDataSource-->
		<bean id="couponDataSource" class="com.atomikos.jdbc.AtomikosDataSourceBean"
		init-method="init" destroy-method="close">
		<description>mysql xa datasource</description>
		<property name="uniqueResourceName">  
			<value>couponDataSource</value>  
		</property>
		<property name="xaDataSourceClassName" value="com.mysql.jdbc.jdbc2.optional.MysqlXADataSource" />
		<property name="xaProperties">  
			<props>  
				<prop key="user">${luckybee.coupon.jdbc.username}</prop>  
				<prop key="password">${luckybee.coupon.jdbc.password}</prop>  
				<prop key="URL">${luckybee.coupon.jdbc.url}</prop>  
			</props>  
		</property>
		<property name="poolSize" value="3"/>  
	</bean>
	<bean id="couponJdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate" autowire="default">
		<property name="dataSource">
			<ref bean="couponDataSource" />
		</property>
	</bean>
	
    <!--数据源 couponDataSource-->
	<bean id="shopDataSource" class="com.atomikos.jdbc.AtomikosDataSourceBean"
		init-method="init" destroy-method="close">
		<description>mysql xa datasource</description>
		<property name="uniqueResourceName">  
            <value>shopDataSource</value>  
        </property>
        <property name="xaDataSourceClassName" value="com.mysql.jdbc.jdbc2.optional.MysqlXADataSource" />
        <property name="xaProperties">  
            <props>  
                <prop key="user">${luckybee.shop.jdbc.username}</prop>  
                <prop key="password">${luckybee.shop.jdbc.password}</prop>  
                <prop key="URL">${luckybee.shop.jdbc.url}</prop>  
            </props>  
        </property>
        <property name="poolSize" value="3"/>   
	</bean>
	<bean id="shopJdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate" autowire="default">
		<property name="dataSource">
			<ref bean="shopDataSource" />
		</property>
	</bean>	
	
	<!-- atomikos事务管理器 -->  
	<bean id="atomikosTransactionManager" class="com.atomikos.icatch.jta.UserTransactionManager"  
		init-method="init" destroy-method="close">  
		<description>UserTransactionManager</description>   
		<property name="forceShutdown">  
			<value>true</value>  
		</property>  
	</bean> 
	<bean id="atomikosUserTransaction" class="com.atomikos.icatch.jta.UserTransactionImp">  
		<property name="transactionTimeout" value="300" />  
	</bean>   
	<bean id="txManager" class="org.springframework.transaction.jta.JtaTransactionManager">
		<property name="transactionManager">
			<ref bean="atomikosTransactionManager"  />
		</property>
		<property name="userTransaction">
			<ref bean="atomikosUserTransaction"/>
		</property>
		<property name="allowCustomIsolationLevels" value="true"/>
	</bean>
	<tx:advice id="shopTxAdvice" transaction-manager="txManager">
		<tx:attributes>
			<tx:method name="get*" read-only="true" />
			<tx:method name="query*" read-only="true" />
			<tx:method name="find*" read-only="true" />
			<tx:method name="insert*" read-only="false" isolation="READ_COMMITTED" rollback-for="Exception" />
			<tx:method name="update*" read-only="false" isolation="READ_COMMITTED" rollback-for="Exception" />
			<tx:method name="delete*" read-only="false" isolation="READ_COMMITTED" rollback-for="Exception" />
			<tx:method name="execute*" read-only="false" isolation="READ_COMMITTED" rollback-for="Exception" />
			<tx:method name="add*" read-only="false" isolation="READ_COMMITTED" rollback-for="Exception" />
			<tx:method name="modify*" read-only="false" isolation="READ_COMMITTED" rollback-for="Exception" />
			<tx:method name="create*" read-only="false" isolation="READ_COMMITTED" rollback-for="Exception" />
			<tx:method name="increase*" read-only="false" isolation="READ_COMMITTED" rollback-for="Exception" />
			<tx:method name="subPoint*" read-only="false" isolation="READ_COMMITTED" rollback-for="Exception" />      
		</tx:attributes>
	</tx:advice>

	<aop:config>
		<aop:pointcut id="shopServiceOperation" expression="execution(* com.newstar.luckybee.*.service.*.*(..))" />
		<aop:advisor advice-ref="shopTxAdvice" pointcut-ref="shopServiceOperation" />
	</aop:config>
</beans>

第三.在src文件夹下面加入一个jta.properties文件. 
文件内容如下,这个文件是必须的.主是是设置atomikos启动的一些参数,比如日志的输出级别,日志文件的名称等. 

Java代码    收藏代码
  1. # SAMPLE PROPERTIES FILE FOR THE TRANSACTION SERVICE  
  2. # THIS FILE ILLUSTRATES THE DIFFERENT SETTINGS FOR THE TRANSACTION MANAGER  
  3. # UNCOMMENT THE ASSIGNMENTS TO OVERRIDE DEFAULT VALUES;  
  4.   
  5. # Required: factory implementation class of the transaction core.  
  6. # NOTE: there is no default for this, so it MUST be specified!   
  7. #   
  8. com.atomikos.icatch.service=com.atomikos.icatch.standalone.UserTransactionServiceFactory  
  9.   
  10.           
  11. # Set base name of file where messages are output   
  12. # (also known as the 'console file').  
  13. #  
  14. com.atomikos.icatch.console_file_name = tm.out  
  15.   
  16. # Size limit (in bytes) for the console file;  
  17. # negative means unlimited.  
  18. #  
  19. # com.atomikos.icatch.console_file_limit=-1  
  20.   
  21. # For size-limited console files, this option  
  22. # specifies a number of rotating files to   
  23. # maintain.  
  24. #  
  25. # com.atomikos.icatch.console_file_count=1  
  26.   
  27. # Set the number of log writes between checkpoints  
  28. #  
  29. # com.atomikos.icatch.checkpoint_interval=500  
  30.   
  31. # Set output directory where console file and other files are to be put  
  32. # make sure this directory exists!  
  33. #  
  34. # com.atomikos.icatch.output_dir = ./  
  35.   
  36. # Set directory of log files; make sure this directory exists!  
  37. #  
  38. # com.atomikos.icatch.log_base_dir = ./  
  39.   
  40. # Set base name of log file  
  41. this name will be  used as the first part of   
  42. # the system-generated log file name  
  43. #  
  44. com.atomikos.icatch.log_base_name = tmlog  
  45.   
  46. # Set the max number of active local transactions   
  47. # or -1 for unlimited.  
  48. #  
  49. # com.atomikos.icatch.max_actives = 50  
  50.   
  51. # Set the default timeout (in milliseconds) for local transactions  
  52. #  
  53. # com.atomikos.icatch.default_jta_timeout = 10000  
  54.   
  55. # Set the max timeout (in milliseconds) for local transactions  
  56. #  
  57. # com.atomikos.icatch.max_timeout = 300000  
  58.   
  59. # The globally unique name of this transaction manager process  
  60. # override this value with a globally unique name  
  61. #  
  62. com.atomikos.icatch.tm_unique_name = tm  
  63.       
  64. # Do we want to use parallel subtransactions? JTA's default  
  65. # is NO for J2EE compatibility  
  66. #  
  67. # com.atomikos.icatch.serial_jta_transactions=true  
  68.                       
  69. # If you want to do explicit resource registration then  
  70. # you need to set this value to false.  
  71. #  
  72. # com.atomikos.icatch.automatic_resource_registration=true    
  73.       
  74. # Set this to WARN, INFO or DEBUG to control the granularity  
  75. # of output to the console file.  
  76. #  
  77. com.atomikos.icatch.console_log_level=INFO  
  78.       
  79. # Do you want transaction logging to be enabled or not?  
  80. # If set to false, then no logging overhead will be done  
  81. # at the risk of losing data after restart or crash.  
  82. #  
  83. # com.atomikos.icatch.enable_logging=true  
  84.   
  85. # Should two-phase commit be done in (multi-)threaded mode or not?  
  86. # Set this to false if you want commits to be ordered according  
  87. # to the order in which resources are added to the transaction.  
  88. #  
  89. # NOTE: threads are reused on JDK 1.5 or higher.   
  90. # For JDK 1.4, thread reuse is enabled as soon as the   
  91. # concurrent backport is in the classpath - see   
  92. # http://mirrors.ibiblio.org/pub/mirrors/maven2/backport-util-concurrent/backport-util-concurrent/  
  93. #  
  94. # com.atomikos.icatch.threaded_2pc=false  
  95.   
  96. # Should shutdown of the VM trigger shutdown of the transaction core too?  
  97. #  
  98. # com.atomikos.icatch.force_shutdown_on_vm_exit=false  

第四.具体应用 
在dao中应用不同的JdbcTemplate即可。

http://gongjiayun.iteye.com/blog/1570111

猜你喜欢

转载自longxzq-126-com.iteye.com/blog/1702780