springboot集成pg数据库配置
时间: 2023-06-29 07:07:18 浏览: 120
springboot配置
首先,需要在项目的pom.xml文件中添加PostgreSQL驱动的依赖:
```xml
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>版本号</version>
</dependency>
```
接下来,在application.properties或application.yml文件中添加数据库连接的配置:
```properties
spring.datasource.url=jdbc:postgresql://localhost:5432/数据库名称
spring.datasource.username=用户名
spring.datasource.password=密码
spring.datasource.driver-class-name=org.postgresql.Driver
```
或者
```yaml
spring:
datasource:
url: jdbc:postgresql://localhost:5432/数据库名称
username: 用户名
password: 密码
driver-class-name: org.postgresql.Driver
```
这样就完成了Spring Boot集成PostgreSQL数据库的配置。
阅读全文