我是 Spring Boot 的新手。我收到此错误
Cannot determine embedded database driver class for database type NONE
每当尝试运行我的 spring-boot 启动 Web 应用程序时(我正在尝试测试执行器和 hal 浏览器)。在过去八小时左右的时间里,我尝试了一些关于 google/stackoverflow 的建议。但似乎对我不起作用。我仍然不断收到另一个错误。
第一次尝试: 我遵循了 journaldev 中提到的两种方法
如果我使用 第一种方法,即使用 @EnableAutoConfiguration(exclude = { DataSourceAutoConfiguration.class })
注释我的主应用程序类,我会收到此错误:
org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'javax.sql.DataSource' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {}
如果我使用 第二种方法,我仍然会收到另一个错误:
Binding to target [Bindable@7c551ad4 type = com.zaxxer.hikari.HikariDataSource, value = 'provided', annotations = array<Annotation>[[empty]]] failed:
Property: driverclassname
Value: com.mysql.jdbc.Driver
Origin: "driverClassName" from property source "source"
Reason: Unable to set value for property driver-class-name
我也尝试了 安迪威尔金森的 建议 并添加了
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost/mydb
到我的 application.properties 文件,但我收到此错误:
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration': Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.zaxxer.hikari.HikariDataSource]: Factory method 'dataSource' threw exception; nested exception is java.lang.IllegalStateException: Cannot load driver class: com.mysql.jdbc.Driver
我还尝试提供用户名和密码(不确定是否需要,因为我没有尝试访问我的数据库),但对我不起作用。如果需要,我也可以提供我的 pom 配置。
原文由 Asif Kamran Malick 发布,翻译遵循 CC BY-SA 4.0 许可协议
下面的配置对我来说非常好 -
应用程序.properties -
pom.xml -
如果需要,您还可以下载我的示例应用程序的源代码以进行比较 - https://github.com/atulajoshi24/springboot-rest.git
相同的相关博客文章 - http://thejavatechie.com/2017/12/21/single-page-application-using-spring-boot-rest-and-angular-1-part-1/