如何将对ldap的操作与对oracle的操作封装在一个事务中?

可通过spring-ldap的ContextSourceAndDataSourceTransactionManager实现。

类路径=org.springframework.ldap.transaction.compensating.manager.ContextSourceAndDataSourceTransactionManager

配置如下:

<!-- 定义spring-ldap事务管理器 -->
<bean id="transactionManager_ContextSourceAndDataSource"
   class="org.springframework.ldap.transaction.compensating.manager.ContextSourceAndDataSourceTransactionManager">
   <property name="contextSource">
    <ref bean="contextSource" />
   </property>

   <property name="dataSource">
    <ref bean="dataSourceOracle" />
   </property>
  
   <property name="dataSource">
    <ref bean="dataSourceMysql" />
   </property>
</bean>

项目代码请到csdn上下载:

 

http://download.csdn.net/source/1912069

你可能感兴趣的:(spring,oracle,bean,配置管理,项目管理)