配置springboot连接pgsql
时间: 2023-12-10 20:02:15 浏览: 85
springboot连接数据库
要配置Spring Boot连接PostgreSQL,需要在项目的 `application.properties` 文件中添加以下配置信息:
```
spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/dbname
spring.datasource.username=username
spring.datasource.password=password
```
其中,`dbname`是你的数据库名称,`username`和`password`是你的PostgreSQL用户名和密码。
还需要在pom.xml文件中添加以下依赖:
```
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.18</version>
</dependency>
```
这个依赖会自动将PostgreSQL驱动程序添加到项目中。
配置完成后,可以使用Spring Boot的自动配置来连接PostgreSQL数据库。例如,可以在代码中使用 `@Autowired` 注解注入一个 `DataSource` 对象来访问数据库。
```
@Autowired
DataSource dataSource;
```
这里的 `dataSource` 对象将自动配置为连接到PostgreSQL数据库。可以使用它来执行SQL查询等操作。
阅读全文