相关文章推荐
完美的莴苣  ·  ASP.NET Core Blazor ...·  3 周前    · 
寂寞的山楂  ·  Sharepoint2019 Unable ...·  11 月前    · 
礼貌的木瓜  ·  angular - TS2552: ...·  1 年前    · 
Failed to bind properties under '' to com.zaxxer.hikari.HikariDataSource: Property: driverclassname Value: oracle.jdbc.OracleDriver Origin: "driverClassName" from property source "source" Reason: Unable to set value for property driver- class - name Action: Update your application 's configuration

这个错误是因为springboot测试环境下默认使用的是h2数据库,你没有对h2进行配置

我用的mysql数据库,需要指定一下

application.properties中添加

spring.datasource.driver-class-name=com.mysql.jdbc.Driver