|
@@ -74,13 +74,13 @@ class MybatisPlusFactoryConfig {
|
|
|
@Bean
|
|
|
@Primary
|
|
|
@ConditionalOnProperty(prefix = "orm", name = ["multi-datasource-enable"], havingValue = "true", matchIfMissing = true)
|
|
|
- fun dynamic(dataSource: DynamicMultipleDataSource): MybatisSqlSessionFactoryBean {
|
|
|
+ fun dynamicDSBean(dataSource: DynamicMultipleDataSource): MybatisSqlSessionFactoryBean {
|
|
|
return setFactoryBean(dataSource)
|
|
|
}
|
|
|
|
|
|
@Bean
|
|
|
@ConditionalOnProperty(prefix = "orm", name = ["multi-datasource-enable"], havingValue = "false", matchIfMissing = true)
|
|
|
- fun single(@Qualifier(DSKey.DSKEY_SYS) dataSource: DataSource): MybatisSqlSessionFactoryBean {
|
|
|
+ fun singleDSBean(@Qualifier(DSKey.DSKEY_SYS) dataSource: DataSource): MybatisSqlSessionFactoryBean {
|
|
|
return setFactoryBean(dataSource)
|
|
|
}
|
|
|
|