文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Mybatis Plus怎么配置双数据库驱动连接数据库

2023-06-28 23:39

关注

本文小编为大家详细介绍“Mybatis Plus怎么配置双数据库驱动连接数据库”,内容详细,步骤清晰,细节处理妥当,希望这篇“Mybatis Plus怎么配置双数据库驱动连接数据库”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

具体实现

在pom.xml中添加如下依赖:

<properties>    <java.version>1.8</java.version>    <lombok.version>1.18.2</lombok.version>    <mybatis-plus.version>3.2.0</mybatis-plus.version>    <druid.version>1.1.9</druid.version>    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding></properties> <dependencies>    <dependency>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-web</artifactId>    </dependency>    <!-- mysql-->    <dependency>        <groupId>mysql</groupId>        <artifactId>mysql-connector-java</artifactId>        <scope>runtime</scope>    </dependency>    <!-- postgrepsql-->    <dependency>        <groupId>org.postgresql</groupId>        <artifactId>postgresql</artifactId>        <scope>runtime</scope>    </dependency>    <dependency>        <groupId>com.baomidou</groupId>        <artifactId>mybatis-plus-boot-starter</artifactId>        <version>${mybatis-plus.version}</version>    </dependency>    <dependency>        <groupId>com.baomidou</groupId>        <artifactId>mybatis-plus</artifactId>        <version>${mybatis-plus.version}</version>    </dependency>    <dependency>        <groupId>org.projectlombok</groupId>        <artifactId>lombok</artifactId>        <version>${lombok.version}</version>    </dependency>    <dependency>        <groupId>com.alibaba</groupId>        <artifactId>druid-spring-boot-starter</artifactId>        <version>${druid.version}</version>    </dependency>    <dependency>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-starter-aop</artifactId>    </dependency></dependencies>

在yml配置文件中添加如下配置:

server:  port: 8080 spring:  application:    name: xxxx  datasource:    druid:      # mysql数据源配置      db1:        driver-class-name: com.mysql.jdbc.Driver        url: jdbc:mysql://127.0.0.1:3306/db1?useUnicode=true&characterEncoding=UTF-8&useSSL=false        username: ${username}        password: ${password}        initial-size: 5        min-idle: 5        max-active: 50      # postgresql 数据源配置      db2:        driver-class-name: org.postgresql.Driver        url: jdbc:postgresql://127.0.0.1:5432/db2?useUnicode=true&characterEncoding=utf-8        username: ${username}        password: ${password}        initial-size: 5        min-idle: 5        max-active: 50 # mybatis-plus配置mybatis-plus:  type-aliases-package: com.dms.gateway.api.entity  mapper-locations: classpath:/mapper    public static void setDataSource(String db){        contextHolder.set(db);    }         public static String getDataSource(){        return contextHolder.get();    }         public static void clear(){        contextHolder.remove();    }}

新建MultipleDataSource类,如下:

public class MultipleDataSource extends AbstractRoutingDataSource {     @Override    protected Object determineCurrentLookupKey() {        return DataSourceContextHolder.getDataSource();    }}

新建DataSource注解,如下:

@Target({ElementType.METHOD,ElementType.TYPE})@Retention(RetentionPolicy.RUNTIME)@Documentedpublic @interface DataSource {     DataSourceEnum value() default DataSourceEnum.DB1;}

新建面向类和方法级别的切面,如下:

@Component@Slf4j@Aspect@Order(-6)public class DataSourceClassAspect {      @Before("@within(dataSource)")    public void doBefore(JoinPoint point, DataSource dataSource){        log.info("切换到数据源[{}]", dataSource.value().getValue());        DataSourceContextHolder.setDataSource(dataSource.value().getValue());    }     @After("@within(dataSource)")    public void doAfter(JoinPoint point, DataSource dataSource){        log.info("回收数据源[{}]", dataSource.value().getValue());        DataSourceContextHolder.clear();    }}
@Component@Slf4j@Aspect@Order(-5)public class DataSourceMethodAspect {      @Before("@annotation(dataSource)")    public void doBefore(JoinPoint point, DataSource dataSource){        log.info("切换到数据源[{}]", dataSource.value().getValue());        DataSourceContextHolder.setDataSource(dataSource.value().getValue());    }     @After("@annotation(dataSource)")    public void doAfter(JoinPoint point, DataSource dataSource){        log.info("回收数据源[{}]", dataSource.value().getValue());        DataSourceContextHolder.clear();    }}

新建多数据源配置类,如下:

@Configuration@MapperScan("com.dms.gateway.api.mapper")public class MybatisPlusConfig {         @Bean    public PaginationInterceptor paginationInterceptor() {        PaginationInterceptor paginationInterceptor = new PaginationInterceptor();        return paginationInterceptor;    }     @Bean(name = "db1")    @ConfigurationProperties(prefix = "spring.datasource.druid.db1" )    public DataSource db1() {        return DruidDataSourceBuilder.create().build();    }     @Bean(name = "db2")    @ConfigurationProperties(prefix = "spring.datasource.druid.db2" )    public DataSource db2() {        return DruidDataSourceBuilder.create().build();    }         @Bean    @Primary    public DataSource multipleDataSource(@Qualifier("db1") DataSource db1,                                         @Qualifier("db2") DataSource db2) {        MultipleDataSource multipleDataSource = new MultipleDataSource();        Map< Object, Object > targetDataSources = new HashMap<>();        targetDataSources.put(DataSourceEnum.DB1.getValue(), db1);        targetDataSources.put(DataSourceEnum.DB2.getValue(), db2);        //添加数据源        multipleDataSource.setTargetDataSources(targetDataSources);        //设置默认数据源        multipleDataSource.setDefaultTargetDataSource(db1);        return multipleDataSource;    }     @Bean("sqlSessionFactory")    public SqlSessionFactory sqlSessionFactory() throws Exception {        MybatisSqlSessionFactoryBean sqlSessionFactory = new MybatisSqlSessionFactoryBean();        sqlSessionFactory.setDataSource(multipleDataSource(db1(),db2()));         MybatisConfiguration configuration = new MybatisConfiguration();        configuration.setJdbcTypeForNull(JdbcType.NULL);        configuration.setMapUnderscoreToCamelCase(true);        configuration.setCacheEnabled(false);        sqlSessionFactory.setConfiguration(configuration);        //添加分页功能        sqlSessionFactory.setPlugins(paginationInterceptor());        return sqlSessionFactory.getObject();    }}

接下来需要具体的业务逻辑,在service层的类或者方法上面添加@DataSource注解来指定该业务需要用到的数据源,如下:

@Service@DataSource(DataSourceEnum.DB2)public class GatewayLogService {     @Autowired    private GatewayLogMapper mapper;     @Override    public Result<IPage<GatewayLog>> pageList(GatewayLogDTO gatewayLogDTO) {        LambdaQueryWrapper<GatewayLog> wrapper = Wrappers.lambdaQuery();        wrapper.like(StringUtils.isNotEmpty(gatewayLogDTO.getPath()), GatewayLog::getPath, gatewayLogDTO.getPath());        wrapper.like(StringUtils.isNotEmpty(gatewayLogDTO.getSourceServer()), GatewayLog::getSourceServer, gatewayLogDTO.getSourceServer());        wrapper.like(StringUtils.isNotEmpty(gatewayLogDTO.getTargetServer()), GatewayLog::getTargetServer, gatewayLogDTO.getTargetServer());        wrapper.eq(StringUtils.isNotEmpty(gatewayLogDTO.getMethod()), GatewayLog::getMethod, gatewayLogDTO.getMethod());        wrapper.like(StringUtils.isNotEmpty(gatewayLogDTO.getRequestBody()), GatewayLog::getRequestBody, gatewayLogDTO.getRequestBody());        wrapper.like(StringUtils.isNotEmpty(gatewayLogDTO.getResponse()), GatewayLog::getResponse, gatewayLogDTO.getResponse());        wrapper.orderByDesc(GatewayLog::getId);         IPage<GatewayLog> page = new Page<>(gatewayLogDTO.getPageNo(), gatewayLogDTO.getPageSize());         return Result.success(mapper.selectPage(page, wrapper));    } }

启动服务,调用相关的接口,我们会在控制台看到如下信息:

Mybatis Plus怎么配置双数据库驱动连接数据库

说明数据源切换成功!!!

读到这里,这篇“Mybatis Plus怎么配置双数据库驱动连接数据库”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯