无法加载驱动程序类:org.postgresql.Driver Spring Boot Parent 2.3.0
Posted
技术标签:
【中文标题】无法加载驱动程序类:org.postgresql.Driver Spring Boot Parent 2.3.0【英文标题】:Cannot load driver class: org.postgresql.Driver Spring Boot Parent 2.3.0 【发布时间】:2020-09-17 16:50:44 【问题描述】:这是我的 pom.xml
https://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 org.springframework.boot spring-boot-starter-parent 2.2.4.发布 2.3.0.RELEASE --> 2.3.0.发布 com.cab.booking 出租车预订 0.0.1-快照 出租车预订 出租车预订平台
<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>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
这是我的 application.properties 文件
尝试使用 postgresql 版本 42.2.12 但没有运气。
这是错误日志截图。
【问题讨论】:
删除驱动类名并使用正确的方言 【参考方案1】:这可能是没有意义的,但我遇到了同样的问题,并用这 2 行解决了:
spring.jpa.hibernate.ddl-auto=create
logging.level.org.hibernate.SQL=debug
【讨论】:
以上是关于无法加载驱动程序类:org.postgresql.Driver Spring Boot Parent 2.3.0的主要内容,如果未能解决你的问题,请参考以下文章
TestContainers 和错误:“无法验证连接 org.postgresql.jdbc.PgConnection”(为所有测试类提升单个容器)
Metabase/Clojure 错误:不可冻结类型:类 org.postgresql.jdbc.PgArray
如何解决这个问题 - 无法在 org.postgresql:postgresql:jar:42.2.4 收集依赖项
PostgresQL + Spring JPA:org.postgresql.util.PSQLException:错误:无法将类型 bytea 转换为没有时区的时间戳
HikariPool-1 - 无法验证连接 org.postgresql.jdbc.PgConnection@2a84e649(此连接已关闭。)