java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > springboot多数据源错误

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

作者:二十同学

这篇文章主要介绍了springboot2.0.0配置多数据源出现jdbcUrl is required with driverClassName的错误,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

 在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方法。

到此这篇关于springboot2.0.0配置多数据源出现jdbcUrl is required with driverClassName的错误的文章就介绍到这了,更多相关springboot多数据源错误内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文