1. 程式人生 > >Failed to bind properties under ” to com.zaxxer.hikari.HikariDataSource

Failed to bind properties under ” to com.zaxxer.hikari.HikariDataSource

1.問題說明

今天配置spring boot多資料來源,同時用到了oracle和postgresql,結果配置完畢後啟動報這個錯。

 

2.原因分析

忘記新增postgresql驅動了!!!

 

3.解決方案

pom中新增postgresql驅動。例如我的專案中:

<dependency>
    <groupId>org.postgresql</groupId>
    <artifactId>postgresql</artifactId>
    <version>9.4.1212</version>
</dependency>