我在数据库“A”下有一些插入操作。接下来,我对数据库“A”进行了操作,该数据库使用 Oracle DB Link 与数据库“B”连接以更新到第二个。当方法执行完成时,对数据库“A”的所有操作都将被持久化,但对数据库“B”的操作不存在。
我正在使用 Spring 3.2.3.RELEASE 和 MyBatis 3.2.3
我的 applicationContext.xml:
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="get*" read-only="true" />
<tx:method name="*" />
</tx:attributes>
</tx:advice>
<aop:config proxy-target-class="false">
<aop:pointcut id="businessEbOperation" expression="bean(*BO)" />
<aop:advisor advice-ref="txAdvice" pointcut-ref="businessEbOperation" />
</aop:config>
<!-- define the SqlSessionFactory -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="typeAliasesPackage" value="com.foo.core.entities" />
<property name="configLocation" value="classpath:mybatis-config.xml" />
</bean>
<!-- Oracle 10g DataSource -->
<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName">
<value>java:/OracleDS</value>
</property>
</bean>
提前致谢!