我已将此postgres依赖项添加到我的pom.xml
:
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
我正在使用mvn spring-boot:run
开始我的服务。我收到此错误消息:
无法加载驱动程序类:“org.postgresql.Driver”
我查看了jar
BOOT-INF\lib\
文件
我的application.yml
:
spring:
jpa:
generate-ddl: false
show-sql: true
properties:
hibernate:
format_sql: true
jdbc:
lob:
non_contextual_creation: true
liquibase:
enabled: false
profiles:
active: 'local'
我的application-local.properties
:
spring.datasource.url: "jdbc:postgresql://host:port/db"
spring.datasource.username: "username"
spring.datasource.password: "password"
spring.datasource.driverClassName: "org.postgresql.Driver"