当我运行我的Web应用程序时,抛出以下错误。
Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration': 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 org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Failed to determine a suitable driver class
字符串
抛出的错误的说明如下,
Description:
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
Reason: Failed to determine a suitable driver class
Action:
Consider the following:<br>
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
<br> If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).
型
在引用this answer之后,我知道我必须对我的pom.xml
文件做一些更改。但我不知道该改变什么,甚至StackOverflow上类似的问题也不能帮助我解决这个问题。
我的pom.xml
如下(当我创建项目时,我添加了“Web”,“JPA”,“MySQL”依赖项),
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>SL2INDUSTRY</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>SL2INDUSTRY</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-jasper -->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-tomcat -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<version>2.1.3.RELEASE</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>2.9.8</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
型
请注意,我不需要处理H2数据库在这种情况下,所以H2不是我的解决方案。
编辑:application.properties
文件
spring.mvc.view.suffix=.jsp
型
5条答案
按热度按时间u0njafvf1#
如果你读到你的错误痕迹:
字符串
你会注意到他正在尝试使用hikari datasource来配置到bd的连接。你在干什么?
你用的是 Spring Boot 2。并且通过这个版本的spring Boot 改变了默认配置。
正如你在这个地址看到的:
https://www.baeldung.com/spring-boot-hikari#spring-boot-2
在Sping Boot 2中,Hikari是默认的DataSource实现。
以下是Sping Boot 1.x的变化:
·对Hikari的依赖现在自动包含在spring-boot-starter-data-jpa中
·自动确定DataSource实现的发现算法现在更喜欢Hikari而不是TomcatJDBC(参见参考手册)。
因此,如果我们想在基于Sping Boot 2.x的应用程序中使用Hikari,我们没有什么可做的。
而且光的配置是不同的。
然后,我想象你想使用tomcat连接池。您可以执行以下操作:
型
这将默认从spring jpa配置中排除Hikari,然后您将需要tomcat-jdbc。您可以配置数据源:
这种简单的方法允许我们使用Tomcat连接池获得Sping Boot ,而无需编写@Configuration类并以编程方式定义DataSource bean。
同样值得注意的是,在本例中,我们使用的是H2内存数据库。Sping Boot 将自动为我们配置H2,而无需指定数据库URL,用户和密码。
我们只需要在“pom.xml”文件中包含相应的依赖项,Sping Boot 将为我们完成其余的工作。
或者,可以跳过Sping Boot 使用的连接池扫描算法,并使用“spring.datasource.type”属性在“application.properties”文件中显式指定连接池数据源:
型
这里有禁用Hikari和配置tomcat的完整参考:
https://www.baeldung.com/spring-boot-tomcat-connection-pool
如果你想使用光的配置是不同的:
https://www.baeldung.com/spring-boot-hikari的
但这两个选项中的一个将解决您的问题。
bqf10yzr2#
有时候事情会很有趣。
我已经检查了很多解决方案,包括baeldung和Stackoverflow
我的错误是,错误的包,我把我的配置类放在主组件扫描包之外,我把它正确地放置,它工作起来很有魅力。
js5cn81o3#
这有几种可能性,但第一次你需要做三件事。
1 -pom.xml上依赖项的特定兼容版本
2 -您需要在pom.xml上添加数据库驱动程序连接器
3 -在'src/main/resources/application.properties'目录中创建一个application.properties,并将您的数据库配置放在那里。
application.properties:使用数据库配置更改de值)
字符串
您可以在这里查看模板:https://spring.io/guides/gs/accessing-data-mysql/
pieyvz9o4#
如果有人在创建“project.jar”文件后遇到这个问题,当项目在IDE / STS(spring工具套件)中运行时,一切都很好。
下面是该怎么做:
“application.yml”文件中不必要的空格““可能会导致这种情况。
字符串
而不是调整我的“application.yml”文件
我只是把我所有的语句都移到了“application.yml”文件中
“application.properties”文件中的语句,并将其格式化为“.properties”中所需的语句。
型
瞧
weylhg0b5#
选择project -罗斯-runconfiguration- classpath-userentries-选择resources文件夹。此错误是因为您的支持无法读取您的resources.properties文件。