SpringBoot【问题 02】@Component + @DS(“xxx“) 多数据源无法切换(问题复现+解决+分析)

简介: SpringBoot【问题 02】@Component + @DS(“xxx“) 多数据源无法切换(问题复现+解决+分析)

1.问题

Java代码:

@Component
@DS("greenplum")
public class GreenPlumComponent {
    @Resource
    private CommonMapper commonMapper;
    private AtomicInteger nextVal;
    @PostConstruct
    public int querySeqNextVal() {
        if (nextVal == null) {
          // seqName 是通过配置文件传过来的这里为了简洁删除了配置文件代码 
            this.nextVal = new AtomicInteger(commonMapper.querySeqNextValBySeqName("seqName"));
        }
        return nextVal.getAndIncrement();
    }
}

Mapper文件内的SQL:

<select id="querySeqNextValBySeqName" resultType="java.lang.Integer">
  SELECT nextval( #{seqName} )
</select>

运行报错:

Cause: java.sql.SQLSyntaxErrorException: FUNCTION mysql.nextval does not exist; 
bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: 
FUNCTION xa-mysql.nextval does not exist

异常的原因是: 本应该查询greenplum查询的却是mysql,也就是@DS("greenplum")未生效。

2.解决

Java代码去掉 @PostConstruct

@Component
@DS("greenplum")
public class GreenPlumComponent {
    @Resource
    private CommonMapper commonMapper;
    private AtomicInteger nextVal;
    public int querySeqNextVal() {
        if (nextVal == null) {
          // seqName 是通过配置文件传过来的这里为了简洁删除了配置文件代码 
            this.nextVal = new AtomicInteger(commonMapper.querySeqNextValBySeqName("seqName"));
        }
        return nextVal.getAndIncrement();
    }
}

调用:

@Autowired
    private GreenPlumComponent greenPlumComponent;
    private List<Map> dealData() {
      // 使用
        int nextVal = greenPlumComponent.querySeqNextVal();
    }

3.分析

可能的问题:

  • 由于 @Component 容器实例化后会调用 @PostConstruct 注解的方法,此时方法的调用并非实例对象调用。
  • @DS 注解利用的是 AOP 非实例对象调用无法触发。

求证后会更新内容,当前仅作记录。

目录
相关文章
|
21天前
|
Java BI API
spring boot 整合 itextpdf 导出 PDF,写入大文本,写入HTML代码,分析当下导出PDF的几个工具
这篇文章介绍了如何在Spring Boot项目中整合iTextPDF库来导出PDF文件,包括写入大文本和HTML代码,并分析了几种常用的Java PDF导出工具。
203 0
spring boot 整合 itextpdf 导出 PDF,写入大文本,写入HTML代码,分析当下导出PDF的几个工具
|
28天前
|
XML Java 应用服务中间件
【Spring】运行Spring Boot项目,请求响应流程分析以及404和500报错
【Spring】运行Spring Boot项目,请求响应流程分析以及404和500报错
127 2
|
5月前
|
druid Java 关系型数据库
Spring Boot2 系列教程(二十五)Spring Boot 整合 Jpa 多数据源
Spring Boot2 系列教程(二十五)Spring Boot 整合 Jpa 多数据源
|
6月前
|
Java 关系型数据库 数据库
Spring Boot多数据源及事务管理:概念与实战
【4月更文挑战第29天】在复杂的企业级应用中,经常需要访问和管理多个数据源。Spring Boot通过灵活的配置和强大的框架支持,可以轻松实现多数据源的整合及事务管理。本篇博客将探讨如何在Spring Boot中配置多数据源,并详细介绍事务管理的策略和实践。
458 3
|
4月前
|
Java Spring 容器
Spring Boot 启动源码解析结合Spring Bean生命周期分析
Spring Boot 启动源码解析结合Spring Bean生命周期分析
98 11
|
3月前
|
Java
SpringBoot 配置多数据源
SpringBoot 配置多数据源
35 0
|
4月前
|
开发框架 Java 数据库
Spring Boot集成多数据源的最佳实践
Spring Boot集成多数据源的最佳实践
|
4月前
|
开发框架 Java 数据库
Spring Boot集成多数据源的最佳实践
Spring Boot集成多数据源的最佳实践
|
5月前
|
druid Java 关系型数据库
在Spring Boot中集成Druid实现多数据源有两种常用的方式:使用Spring Boot的自动配置和手动配置。
在Spring Boot中集成Druid实现多数据源有两种常用的方式:使用Spring Boot的自动配置和手动配置。
694 5
|
4月前
|
JavaScript Java 测试技术
基于SpringBoot+Vue的高质量升学分析系统的详细设计和实现(源码+lw+部署文档+讲解等)
基于SpringBoot+Vue的高质量升学分析系统的详细设计和实现(源码+lw+部署文档+讲解等)
32 0