SpringBoot配置多数据源Oracle序列无效

SpringBoot配置多数据源Oracle序列无效

异常信息
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; 
nested exception is org.mybatis.spring.MyBatisSystemException: 
nested exception is org.apache.ibatis.type.TypeException: 
Could not set parameters for mapping: 
ParameterMapping{property='id', mode=IN, javaType=class java.lang.Long, jdbcType=null, numericScale=null, resultMapId='null', jdbcTypeName='null', expression='null'}. 
Cause: org.apache.ibatis.type.TypeException: Error setting null for parameter #1 with JdbcType OTHER .
 Try setting a different JdbcType for this parameter or a different jdbcTypeForNull configuration property. 
 Cause: java.sql.SQLException: Invalid column type: 1111] with root cause
异常原因

SpringBoot 配置多数据源时。全局的序列配置将会失效,各数据源需要单独配置自己的序列信息。

异常代码
@Configuration
@MapperScan(basePackages = {"com.ivali.resource.mapper.rmw"}, sqlSessionFactoryRef = "sqlSessionFactoryRmw")
public class RmwDataSourceConfig {

    @Bean(name = "rmwDataSource")
    @Qualifier("rmwDataSource")
    @ConfigurationProperties(prefix = "spring.datasource.rmw")
    public DataSource rmwDataSource() {
        return new DruidXADataSource();
    }

    @Bean(name = "rmwJdbcTemplate")
    public JdbcTemplate rmwJdbcTemplate(@Qualifier("rmwDataSource") DataSource dataSource) {
        return new JdbcTemplate(dataSource);
    }

    @Bean(name = "sqlSessionFactoryRmw")
    public MybatisSqlSessionFactoryBean sqlSessionFactoryRmw(@Qualifier("rmwDataSource") DataSource dataSource) throws Exception {
        MybatisSqlSessionFactoryBean bean = new MybatisSqlSessionFactoryBean();
        bean.setDataSource(dataSource);
        return bean;
    }

    @Bean(name = "transactionManagerRmw")
    public DataSourceTransactionManager testTransactionManager(@Qualifier("rmwDataSource") DataSource dataSource) {
        return new DataSourceTransactionManager(dataSource);
    }

    @Bean(name = "sqlSessionTemplateRmw")
    public SqlSessionTemplate sqlSessionTemplateRmw(@Qualifier("sqlSessionFactoryRmw") SqlSessionFactory sqlSessionFactory) throws Exception {
        return new SqlSessionTemplate(sqlSessionFactory);
    }
}
修正的代码

为该数据源配置单独的配置

@Configuration
@MapperScan(basePackages = {"com.ivlai.resource.mapper.rmw"}, sqlSessionFactoryRef = "sqlSessionFactoryRmw")
public class RmwDataSourceConfig {

    @Bean(name = "rmwDataSource")
    @Qualifier("rmwDataSource")
    @ConfigurationProperties(prefix = "spring.datasource.rmw")
    public DataSource rmwDataSource() {
        return new DruidXADataSource();
    }

    @Bean(name = "rmwJdbcTemplate")
    public JdbcTemplate rmwJdbcTemplate(@Qualifier("rmwDataSource") DataSource dataSource) {
        return new JdbcTemplate(dataSource);
    }

    @Bean(name = "sqlSessionFactoryRmw")
    public MybatisSqlSessionFactoryBean sqlSessionFactoryRmw(@Qualifier("rmwDataSource") DataSource dataSource) throws Exception {
        MybatisSqlSessionFactoryBean bean = new MybatisSqlSessionFactoryBean();
        bean.setDataSource(dataSource);
        // 改了这里,自定义的config配置
        bean.setGlobalConfig(globalConfig()); 
        return bean;
    }

    @Bean(name = "transactionManagerRmw")
    public DataSourceTransactionManager testTransactionManager(@Qualifier("rmwDataSource") DataSource dataSource) {
        return new DataSourceTransactionManager(dataSource);
    }

    @Bean(name = "sqlSessionTemplateRmw")
    public SqlSessionTemplate sqlSessionTemplateRmw(@Qualifier("sqlSessionFactoryRmw") SqlSessionFactory sqlSessionFactory) throws Exception {
        return new SqlSessionTemplate(sqlSessionFactory);
    }

	// 加了单独的config配置
    @Bean(name = "rmwGlobalConfig")
    public GlobalConfig globalConfig() {
        GlobalConfig conf = new GlobalConfig();
        conf.setDbConfig(new GlobalConfig.DbConfig().setKeyGenerator(new OracleKeyGenerator()));
        return conf;
    }
}
参考

大佬还有详细分析过程:mybatis-plus使用oracle序列生成器不生效问题

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值