gpt4 book ai didi

spring - Spring Boot 将 '' 下的属性绑定(bind)到 com.zaxxer.hikari.HikariDataSource 失败

转载 作者:IT老高 更新时间:2023-10-28 13:52:33 26 4
gpt4 key购买 nike

当我尝试运行 Spring Boot 应用程序时出现以下错误。

Description:

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

这是same issue我有,但我没有使用 maven。

我正在使用 spring Boot 2.0.0 和以下启动器。

dependencies {
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.mybatis.spring.boot:mybatis-spring-boot-starter:1.3.1"
testCompile "org.springframework.boot:spring-boot-starter-test"
}

这是我的 application.properties 文件

spring.datasource.url= *****
spring.datasource.username= ******
spring.datasource.password= ******

最佳答案

我也有同样的问题(Spring boot 2),

我修正了添加驱动程序类。

查找 application.properties 文件。

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

完整代码。

spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=upate
spring.datasource.url=jdbc:mysql://localhost:3306/database_name
spring.datasource.username=admin
spring.datasource.password=admin1234

关于spring - Spring Boot 将 '' 下的属性绑定(bind)到 com.zaxxer.hikari.HikariDataSource 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50215936/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com