|
@@ -1,22 +1,25 @@
|
|
|
package com.gxzc.zen.orm.config
|
|
|
|
|
|
-import com.alibaba.druid.pool.DruidDataSource
|
|
|
+import com.alibaba.druid.pool.xa.DruidXADataSource
|
|
|
import com.baomidou.mybatisplus.spring.MybatisSqlSessionFactoryBean
|
|
|
import com.baomidou.mybatisplus.spring.boot.starter.MybatisPlusProperties
|
|
|
import com.baomidou.mybatisplus.spring.boot.starter.SpringBootVFS
|
|
|
import com.gxzc.zen.orm.DynamicMultipleDataSource
|
|
|
import com.gxzc.zen.orm.contants.DSKey
|
|
|
import org.springframework.beans.factory.annotation.Autowired
|
|
|
+import org.springframework.beans.factory.annotation.Qualifier
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties
|
|
|
import org.springframework.boot.context.properties.EnableConfigurationProperties
|
|
|
+import org.springframework.boot.jta.atomikos.AtomikosDataSourceBean
|
|
|
import org.springframework.context.annotation.Bean
|
|
|
import org.springframework.context.annotation.Configuration
|
|
|
+import org.springframework.context.annotation.DependsOn
|
|
|
import org.springframework.context.annotation.Primary
|
|
|
-import org.springframework.core.annotation.Order
|
|
|
import org.springframework.jdbc.datasource.DataSourceTransactionManager
|
|
|
-import org.springframework.transaction.PlatformTransactionManager
|
|
|
-import org.springframework.transaction.annotation.TransactionManagementConfigurer
|
|
|
+import org.springframework.transaction.jta.JtaTransactionManager
|
|
|
import javax.sql.DataSource
|
|
|
+import javax.sql.XADataSource
|
|
|
+import javax.transaction.TransactionManager
|
|
|
|
|
|
/**
|
|
|
*
|
|
@@ -24,28 +27,43 @@ import javax.sql.DataSource
|
|
|
*/
|
|
|
@Configuration
|
|
|
@EnableConfigurationProperties(MybatisPlusProperties::class)
|
|
|
-class MultipleDataSourceConfig : TransactionManagementConfigurer {
|
|
|
+class MultipleDataSourceConfig {
|
|
|
|
|
|
@Autowired
|
|
|
private lateinit var properties: MybatisPlusProperties
|
|
|
|
|
|
- @Bean(DSKey.DSKEY_SYS)
|
|
|
+ @Bean(DSKey.DSKEY_SYS + "druid")
|
|
|
@ConfigurationProperties(prefix = "datasource.sys")
|
|
|
+ fun dataSourceSysDruid(): XADataSource {
|
|
|
+ return DruidXADataSource()
|
|
|
+ }
|
|
|
+
|
|
|
+ @Bean(DSKey.DSKEY_BUSINESS + "druid")
|
|
|
+ @ConfigurationProperties(prefix = "datasource.bus")
|
|
|
+ fun dataSourceBusDruid(): XADataSource {
|
|
|
+ return DruidXADataSource()
|
|
|
+ }
|
|
|
+
|
|
|
+ @Bean(DSKey.DSKEY_SYS)
|
|
|
+ @DependsOn(DSKey.DSKEY_SYS + "druid")
|
|
|
@Primary
|
|
|
- fun dataSourceSys(): DataSource {
|
|
|
- return DruidDataSource()
|
|
|
+ fun dataSourceSys(@Qualifier(DSKey.DSKEY_SYS + "druid") xaDataSource: XADataSource): DataSource {
|
|
|
+ return AtomikosDataSourceBean().also {
|
|
|
+ it.xaDataSource = xaDataSource
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Bean(DSKey.DSKEY_BUSINESS)
|
|
|
- @ConfigurationProperties(prefix = "datasource.bus")
|
|
|
- fun dataSourceBus(): DataSource {
|
|
|
- return DruidDataSource()
|
|
|
+ @DependsOn(DSKey.DSKEY_BUSINESS + "druid")
|
|
|
+ fun dataSourceBus(@Qualifier(DSKey.DSKEY_BUSINESS + "druid") xaDataSource: XADataSource): DataSource {
|
|
|
+ return AtomikosDataSourceBean().also {
|
|
|
+ it.xaDataSource = xaDataSource
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Bean
|
|
|
- fun multipleDataSource(): DynamicMultipleDataSource {
|
|
|
- val dataSourceSys = dataSourceSys()
|
|
|
- val dataSourceBus = dataSourceBus()
|
|
|
+ fun multipleDataSource(@Qualifier(DSKey.DSKEY_SYS) dataSourceSys: DataSource,
|
|
|
+ @Qualifier(DSKey.DSKEY_SYS) dataSourceBus: DataSource): DynamicMultipleDataSource {
|
|
|
return DynamicMultipleDataSource().also {
|
|
|
it.setTargetDataSources(mapOf(
|
|
|
Pair(DSKey.DSKEY_SYS, dataSourceSys),
|
|
@@ -54,11 +72,10 @@ class MultipleDataSourceConfig : TransactionManagementConfigurer {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @Bean
|
|
|
- @Order(3)
|
|
|
- fun transactionManager(): PlatformTransactionManager {
|
|
|
- return DataSourceTransactionManager(multipleDataSource())
|
|
|
- }
|
|
|
+// @Bean
|
|
|
+// fun transactionManager(dynamicMultipleDataSource: DynamicMultipleDataSource): JtaTransactionManager {
|
|
|
+// return JtaTransactionManager(DataSourceTransactionManager(dynamicMultipleDataSource) as TransactionManager)
|
|
|
+// }
|
|
|
|
|
|
@Bean
|
|
|
@Primary
|
|
@@ -72,9 +89,9 @@ class MultipleDataSourceConfig : TransactionManagementConfigurer {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- override fun annotationDrivenTransactionManager(): PlatformTransactionManager {
|
|
|
- return transactionManager()
|
|
|
- }
|
|
|
+// override fun annotationDrivenTransactionManager(): PlatformTransactionManager {
|
|
|
+// return transactionManager()
|
|
|
+// }
|
|
|
|
|
|
// @Bean
|
|
|
// fun sqlSessionFactory(dynamicMultipleDataSource: DynamicMultipleDataSource): SqlSessionFactory {
|