1

我尝试在没有 Java EE(JBoss 之类的应用服务器)的情况下仅使用 tomcat 在 Spring 中进行全局(分布式)事务。涉及到两个数据库,第一个是 PostgreSQL 数据库,第二个是 MS SQLServer 数据库。有没有办法在不使用休眠的情况下做到这一点?

我使用 atomikos API 进行了尝试,但如果没有休眠会话,我不知道该怎么做。我认为基于 JDBC 或 Spring 附带的其他一些工具会很棒。但我不知道该怎么做。

我的 Spring 配置如下所示:

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

    <!-- Get database driver XA properties from file -->
    <util:properties id="jdbcConfiguration1" location="classpath:jdbcconfiguration1.properties"/>
    <util:properties id="jdbcConfiguration2" location="classpath:jdbcconfiguration2.properties"/>

    <bean id="dataSourceA"
        class="com.atomikos.jdbc.AtomikosDataSourceBean" init-method="init" destroy-method="close">
        <property name="uniqueResourceName"><value>XADBMS01</value></property>
        <property name="xaDataSourceClassName"><value>org.postgresql.xa.PGXADataSource</value></property>
        <property name="xaProperties" ref="jdbcConfiguration1"/>          
        <property name="poolSize"><value>1</value></property>
    </bean>

    <bean id="dataSourceB"
        class="com.atomikos.jdbc.AtomikosDataSourceBean" init-method="init" destroy-method="close">           
         ...
        <property name="poolSize"><value>1</value></property>
    </bean>    

    <!-- Construct Atomikos UserTransactionManager, needed to configure Spring -->
    <bean id="atomikosTransactionManager" class="com.atomikos.icatch.jta.UserTransactionManager" 
          init-method="init" destroy-method="close">
        <!--  when close is called, should we force transactions to terminate or not? -->
        <property name="forceShutdown">
            <value>true</value>
        </property>
    </bean>

    <!-- Also use Atomikos UserTransactionImp, needed to configure Spring  --> 
    <bean id="atomikosUserTransaction" class="com.atomikos.icatch.jta.UserTransactionImp">
        <property name="transactionTimeout"><value>300</value></property>
    </bean>

    <!-- Configure the Spring framework to use JTA transactions from Atomikos -->
    <bean id="transactionManager" class="org.springframework.transaction.jta.JtaTransactionManager">
    <property name="transactionManager"><ref bean="atomikosTransactionManager"  /></property>
    <property name="userTransaction"><ref bean="atomikosUserTransaction"  /></property>
    </bean>

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

   ......

</beans>

是否需要使用休眠?我不想使用休眠,因为我认为它对我的需要来说很复杂。是否有可能做到“基于弹簧”?

4

1 回答 1

1

所以,你已经配置了两个DataSources,想知道如何以与JtaTransactionManager你声明的一致的方式使用。

Spring 提供了两种选择:

  • (推荐)使用JdbcTemplateJdbcTemplate自动参与当前事务的操作。

  • 用于DataSourceUitls.getConnection()获取一个Connection知道当前事务的对象,并对其执行任意 JDBC 操作。

在这两种情况下,您都需要在代码中使用@Transactionalor定义事务边界TransactionTemplate,如11. 事务管理中所述。

于 2013-01-21T11:36:48.170 回答