亲宝软件园·资讯

展开

springboot多数据源错误 springboot2.0.0配置多数据源出现jdbcUrl is required with driverClassName的错误

二十同学 人气:0
想了解springboot2.0.0配置多数据源出现jdbcUrl is required with driverClassName的错误的相关内容吗,二十同学在本文为您仔细讲解springboot多数据源错误的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:springboot多数据源错误,springboot2.0.0配置多数据源,下面大家一起来学习吧。

 在Spring Boot 2.0配置多数据源和Spring Boot 1.5.x之前,一些配置及用法多少有些不同,其中一个问题就是“jdbcUrl is required with driverClassName.”的错误

解决办法:

在配置文件中使用spring.datasource.jdbc-url,而不是通常使用的spring.datasource.url

spring:
 datasource:
  master:
   jdbc-url: jdbc:postgresql://192.168.1.2:5432/test?useUnicode=true&characterEncoding=utf8
   username: postgres
   password: postgres
   driverClassName: org.postgresql.Driver
   maxActive: 10
   maxIdle: 3
  worker:
   jdbc-url: jdbc:postgresql://192.168.1.3:5432/test?useUnicode=true&characterEncoding=utf8
   username: postgres
   password: postgres
   driverClassName: org.postgresql.Driver
   maxActive: 10
   maxIdle: 3

第二种方法:

在数据源配置时使用DataSourceProperties方法。

加载全部内容

相关教程
猜你喜欢
用户评论