SpringBoot SpringCloud MybatisPlus框架动态数据源(配置多个DB数据源)

分库分表的不要使用以下方法
这里是普通的多数据源配置
本方法是nacos的配置

1 依赖

<dependency>
    <groupId>com.baomidou</groupId>
    <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
    <version>3.4.1</version>
</dependency>


2 nacos的yaml配置

spring:
  datasource:
    dynamic: 
      # 设置默认的数据源
      primary: dbplus
      # 严格匹配数据源,默认false. true未匹配到指定数据源时抛异常,false使用默认数据源
      strict: false
      datasource: 
        dbplus:
          driverClassName: com.mysql.jdbc.Driver
          url: jdbc:mysql://xxxxxxxxx.rds.aliyuncs.com:3306/dbplus?useAffectedRows=true&useUnicode=true&autoReconnect=true&characterEncoding=UTF-8&allowMultiQueries=true&useSSL=false
          username: root
          password: 123456
        marketing:
          driverClassName: com.mysql.jdbc.Driver
          url: jdbc:mysql://xxxxxxxxx.rds.aliyuncs.com:3306/marketing?useAffectedRows=true&useUnicode=true&autoReconnect=true&characterEncoding=UTF-8&allowMultiQueries=true&useSSL=false
          username: root
          password: 123456


3 多数据源注解

实现类加上注解

@Slf4j
@Service
@DS("marketing")
public class UserPrizeLogServiceImpl extends ServiceImpl<UserPrizeLogMapper, UserPrizeLog> implements IUserPrizeLogService {

    @Resource
    UserPrizeLogMapper mapper;


检测一下,配置有没有问题,然后启动

2021-10-11 15:39:22,536 []-[]-[]-[]-[main] [org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker] [INFO] (PostProcessorRegistrationDelegate.java:330)- Bean 'org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration' of type [org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration  EnhancerBySpringCGLIB  841905a3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/


........


2021-10-11 15:39:26,918 []-[]-[]-[]-[main] [com.netflix.config.sources.URLConfigurationSource] [WARN] (URLConfigurationSource.java:121)- No URLs will be polled as dynamic configuration sources.
2021-10-11 15:39:26,918 []-[]-[]-[]-[main] [com.netflix.config.sources.URLConfigurationSource] [INFO] (URLConfigurationSource.java:122)- To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
 _ _   |_  _ _|_. ___ _ |    _ 
| | |\/|_)(_| | |_\  |_)||_|_\ 
     /               |         


如果没有报错,表示正常

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

明雨星云

感谢,我会继续创作更优质作品

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值