相关文章推荐
个性的韭菜  ·  List Files in a Zip ...·  1 年前    · 
谦和的小蝌蚪  ·  java ...·  1 年前    · 
气势凌人的花卷  ·  从NSDictionary ...·  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