当前位置: 首页 > 知识库问答 >
问题:

无法确定合适的驱动程序类-Spring Boot-PostgreSQL

常经赋
2023-03-14

我正在尝试将Postgres DB连接到我的Spring Boot应用程序,但出现以下错误:

配置数据源失败:未指定“url”属性,无法配置嵌入式数据源。原因:未能确定合适的驱动类< BR>动作:
考虑如下:如果你想要一个嵌入式数据库(H2,HSQL或DeBy),请把它放在类路径上。如果要从特定配置文件加载数据库设置,则可能需要激活它(当前没有激活的配置文件)。

application.yaml

datasource:
  driver-class-name: org.postgresql.Driver
  url: jdbc:postgresql://localhost:5432/my_db
  username: postgres
  password: pswrd
# JPA properties
jpa:
  hibernate:
    ddl-auto: update # When you launch the application for the first time - switch "none" at "create"
  show-sql: true
  database: my_db
  database-platform: org.hibernate.dialect.PostgreSQLDialect
  open-in-view: false
  generate-ddl: true

项目结构:

pom.xml

<?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 https://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.5.2</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>PostgresApp</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>PostgresApp</name>
    <description>Demo project for Spring Boot</description>
    <properties>
        <java.version>11</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>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

共有1个答案

罗翔
2023-03-14

您的应用程序中的所有属性似乎都缺少spring前缀。yaml。它应该是以下内容:

spring:
  datasource:
    driver-class-name: org.postgresql.Driver
    url: jdbc:postgresql://localhost:5432/my_db
    username: postgres
    password: pswrd
  # JPA properties
  jpa:
    hibernate:
      ddl-auto: update # When you launch the application for the first time - switch "none" at "create"
    show-sql: true
    database: my_db
    database-platform: org.hibernate.dialect.PostgreSQLDialect
    open-in-view: false
    generate-ddl: true
 类似资料:
  • 启动应用程序时,出现以下错误: 上下文初始化过程中遇到异常-取消刷新尝试:org.springframework.beans.factory.BeanCreationException:创建名为“Block DataController”的bean时出错:注入资源依赖项失败;嵌套异常为org.springframework.beans.factory.beanCreationException:创

  • 我正在尝试使用SpringBoot和Postgres数据库开发web应用程序。然而,在连接到应用程序时,我遇到了错误“无法确定合适的驱动程序类”,正如以前帖子中的建议,我尝试使用不同版本的jdbc驱动程序,还尝试手动为NamedParameterJdbcTemplate创建bean。我还验证了库是否存在,是否可以从Java代码访问,以及类路径中是否存在这些库。但它仍然给出了同样的问题。我正在使用g

  • 实际上,我正在开发一个带有Spring引导的restful API,我使用失眠作为客户端来测试对我的实体所做的修改。使用tomcat运行应用程序时,会显示错误消息: 无法启动应用程序 说明: 配置DataSource失败:未指定url属性,无法配置嵌入式数据源。 原因:无法确定合适的驱动程序类别。 我在文件“application.properties”中进行了必要的配置,并在pom.xml文件中

  • 我正在使用SpringBootJPA创建一个应用程序,我正在使用MySQL作为数据库。 以下是我的申请表。性质 我添加了以下依赖项 当我签入调试日志时,我可以在我的类路径中看到mysql java连接器,但仍然会出现以下错误 2019-07-29 10:03:00.742信息10356---[主要]o.a.c.c.c.c。[雄猫]。[本地主机]。[/]:初始化Spring嵌入式WebApplica

  • 从IDE运行时,一切看起来都很好 尝试在tomcat服务器中部署应用程序时,出现以下错误。 应用JAVA build.gradle application.properties

  • 当我运行Spring Boot项目时,出现以下错误: 描述: 配置数据源失败:未指定“url”属性,无法配置嵌入式数据源。 原因:无法确定合适的驱动程序类别 行动: 考虑以下事项: 如果您想要一个嵌入式数据库(H2、HSQL或Derby),请将其放在类路径上 如果要从特定配置文件加载数据库设置,则可能需要激活它(当前没有激活的配置文件)。 我在pom中得到了这个依赖项。xml文件: 当我试图将Sp