原文: http://zetcode.com/springboot/postgresql/

Spring Boot PostgreSQL 教程展示了如何在 Spring Boot 应用中使用 PostgreSQL 数据库。

Spring 是用于创建企业应用的流行 Java 应用框架。 Spring Boot 是 Spring 框架的演进,可帮助您轻松创建独立的,生产级的基于 Spring 的应用。

PostgreSQL

PostgreSQL 是一个功能强大的开源对象关系数据库系统。 它是一个多用户数据库管理系统。 它可以在包括 Linux,FreeBSD,Solaris,Microsoft Windows 和 Mac OSX 在内的多个平台上运行。PostgreSQL 由 PostgreSQL 全球开发小组开发。

PostgreSQL 设置

我们将展示如何在 Debian Linux 系统上安装 PostgreSQL 数据库。

  1. $ sudo apt-get install postgresql

此命令将安装 PostgreSQL 服务器和相关包。

  1. $ /etc/init.d/postgresql status

我们使用postgresql status命令检查数据库的状态。

  1. $ sudo -u postgres psql postgres
  2. psql (9.5.10)
  3. Type "help" for help.
  4. postgres=# \password postgres
  5. Enter new password:
  6. Enter it again:

安装后,将使用空的默认密码创建一个具有管理权限的postgres用户。 第一步,我们需要为postgres设置密码。

  1. $ sudo -u postgres createuser --interactive --password user12
  2. Shall the new role be a superuser? (y/n) n
  3. Shall the new role be allowed to create databases? (y/n) y
  4. Shall the new role be allowed to create more new roles? (y/n) n
  5. Password:

我们创建一个新的数据库用户。

  1. $ sudo -u postgres createdb testdb -O user12

我们使用createdb命令创建一个新的testdb数据库,该数据库将由user12拥有。

  1. $ sudo vi /etc/postgresql/9.5/main/pg_hba.conf

我们编辑pg_hba.conf文件。

  1. # "local" is for Unix domain socket connections only
  2. local all all trust
  3. # IPv4 local connections:
  4. host all all 127.0.0.1/32 trust

为了能够在本地 PostgreSQL 安装中运行 Spring Boot 应用,我们将 Unix 域套接字和本地连接的认证方法更改为trust

  1. $ sudo service postgresql restart

我们重新启动 PostgreSQL 以启用更改。

  1. $ psql -U user12 -d testdb -W
  2. Password for user user12:
  3. psql (9.5.10)
  4. Type "help" for help.
  5. testdb=>

现在我们可以使用psql工具连接到数据库。

Spring Boot PostgreSQL 示例

以下应用是一个简单的 Spring Boot Web 应用,它使用 PostgreSQL 数据库。 我们有一个主页,带有一个链接,用于显示数据库表中的数据。 我们使用 Thymeleaf 模板系统将数据与 HTML 连接。

  1. pom.xml
  2. src
  3. ├───main
  4. ├───java
  5. └───com
  6. └───zetcode
  7. Application.java
  8. ├───controller
  9. MyController.java
  10. ├───model
  11. City.java
  12. ├───repository
  13. CityRepository.java
  14. └───service
  15. CityService.java
  16. ICityService.java
  17. └───resources
  18. application.properties
  19. data-postgres.sql
  20. schema-postgres.sql
  21. ├───static
  22. index.html
  23. └───templates
  24. showCities.html
  25. └───test
  26. └───java

这是项目结构。

pom.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  5. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <groupId>com.zetcode</groupId>
  8. <artifactId>springbootpostgreex</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <packaging>jar</packaging>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. <maven.compiler.target>11</maven.compiler.target>
  15. </properties>
  16. <parent>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-parent</artifactId>
  19. <version>2.1.7.RELEASE</version>
  20. </parent>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.postgresql</groupId>
  28. <artifactId>postgresql</artifactId>
  29. <scope>runtime</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-data-jpa</artifactId>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-maven-plugin</artifactId>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>

Spring Boot 启动器是一组方便的依赖项描述符,可以极大地简化 Maven 配置。 spring-boot-starter-parent具有 Spring Boot 应用的一些常用配置。 spring-boot-starter-web是使用 Spring MVC 构建 Web(包括 RESTful)应用的入门工具。 它使用 Tomcat 作为默认的嵌入式容器。 spring-boot-starter-thymeleaf是使用 Thymeleaf 视图构建 MVC Web 应用的入门工具。 spring-boot-starter-data-jpa是将 Spring Data JPA 与 Hibernate 结合使用的入门工具。

postgresql依赖项适用于 PostgreSQL 数据库驱动程序。

spring-boot-maven-plugin提供了 Maven 的 Spring Boot 支持,使我们能够打包可执行的 JAR 或 WAR 档案。 它的spring-boot:run目标运行 Spring Boot 应用。

resources/application.properties

  1. spring.main.banner-mode=off
  2. logging.level.org.springframework=ERROR
  3. spring.jpa.hibernate.ddl-auto=none
  4. spring.datasource.initialization-mode=always
  5. spring.datasource.platform=postgres
  6. spring.datasource.url=jdbc:postgresql://localhost:5432/testdb
  7. spring.datasource.username=postgres
  8. spring.datasource.password=s$cret
  9. spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true

application.properties文件中,我们编写了 Spring Boot 应用的各种配置设置。

使用spring.main.banner-mode属性,我们可以关闭 Spring 横幅。 要加载未嵌入的数据库,在 Spring Boot 2 中,我们需要添加spring.datasource.initialization-mode=always。 为避免冲突,我们使用spring.jpa.hibernate.ddl-auto=none关闭自动模式创建。

在 spring 数据源属性中,我们设置了 PostgreSQL 数据源。

设置spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation选项可以避免最近发生的问题。 没有此选项,我们将收到以下错误:

  1. java.sql.SQLFeatureNotSupportedException: Method org.postgresql.jdbc.PgConnection.createClob()
  2. is not yet implemented.

com/zetcode/model/City.java

  1. package com.zetcode.model;
  2. import java.util.Objects;
  3. import javax.persistence.Entity;
  4. import javax.persistence.GeneratedValue;
  5. import javax.persistence.GenerationType;
  6. import javax.persistence.Id;
  7. import javax.persistence.Table;
  8. @Entity
  9. @Table(name = "cities")
  10. public class City {
  11. @Id
  12. @GeneratedValue(strategy = GenerationType.AUTO)
  13. private Long id;
  14. private String name;
  15. private int population;
  16. public City() {
  17. }
  18. public City(Long id, String name, int population) {
  19. this.id = id;
  20. this.name = name;
  21. this.population = population;
  22. }
  23. public Long getId() {
  24. return id;
  25. }
  26. public String getName() {
  27. return name;
  28. }
  29. public void setName(String name) {
  30. this.name = name;
  31. }
  32. public int getPopulation() {
  33. return population;
  34. }
  35. public void setPopulation(int population) {
  36. this.population = population;
  37. }
  38. @Override
  39. public int hashCode() {
  40. int hash = 7;
  41. hash = 79 * hash + Objects.hashCode(this.id);
  42. hash = 79 * hash + Objects.hashCode(this.name);
  43. hash = 79 * hash + this.population;
  44. return hash;
  45. }
  46. @Override
  47. public boolean equals(Object obj) {
  48. if (this == obj) {
  49. return true;
  50. }
  51. if (obj == null) {
  52. return false;
  53. }
  54. if (getClass() != obj.getClass()) {
  55. return false;
  56. }
  57. final City other = (City) obj;
  58. if (this.population != other.population) {
  59. return false;
  60. }
  61. if (!Objects.equals(this.name, other.name)) {
  62. return false;
  63. }
  64. return Objects.equals(this.id, other.id);
  65. }
  66. @Override
  67. public String toString() {
  68. final StringBuilder sb = new StringBuilder("City{");
  69. sb.append("id=").append(id);
  70. sb.append(", name='").append(name).append('\'');
  71. sb.append(", population=").append(population);
  72. sb.append('}');
  73. return sb.toString();
  74. }
  75. }

这是City实体。 每个实体必须至少定义两个注解:@Entity@Id

  1. @Entity
  2. @Table(name = "cities")
  3. public class City {

@Entity注解指定该类是一个实体,并映射到数据库表。 @Table注解指定要用于映射的数据库表的名称。

  1. @Id
  2. @GeneratedValue(strategy = GenerationType.AUTO)
  3. private Long id;

@Id注解指定实体的主键,@GeneratedValue提供规范主键值的生成策略。

resources/schema-postgres.sql

  1. DROP TABLE IF EXISTS cities;
  2. CREATE TABLE cities(id serial PRIMARY KEY, name VARCHAR(255), population integer);

启动应用后,如果关闭了自动模式创建,则将执行schema-postgres.sql脚本。 该脚本将创建一个新的数据库表。

resources/data-postgres.sql

  1. INSERT INTO cities(name, population) VALUES('Bratislava', 432000);
  2. INSERT INTO cities(name, population) VALUES('Budapest', 1759000);
  3. INSERT INTO cities(name, population) VALUES('Prague', 1280000);
  4. INSERT INTO cities(name, population) VALUES('Warsaw', 1748000);
  5. INSERT INTO cities(name, population) VALUES('Los Angeles', 3971000);
  6. INSERT INTO cities(name, population) VALUES('New York', 8550000);
  7. INSERT INTO cities(name, population) VALUES('Edinburgh', 464000);
  8. INSERT INTO cities(name, population) VALUES('Berlin', 3671000);

之后,执行data-postgres.sql文件以用数据填充表。

com/zetcode/repository/CityRepository.java

  1. package com.zetcode.repository;
  2. import com.zetcode.model.City;
  3. import org.springframework.data.repository.CrudRepository;
  4. import org.springframework.stereotype.Repository;
  5. @Repository
  6. public interface CityRepository extends CrudRepository<City, Long> {
  7. }

通过从 Spring CrudRepository扩展,我们将为我们的数据存储库实现一些方法,包括findAll()。 这样,我们节省了大量样板代码。

com/zetcode/service/ICityService.java

  1. package com.zetcode.service;
  2. import com.zetcode.model.City;
  3. import java.util.List;
  4. public interface ICityService {
  5. List<City> findAll();
  6. }

ICityService提供了一种从数据源获取所有城市的契约方法。

com/zetcode/service/CityService.java

  1. package com.zetcode.service;
  2. import com.zetcode.model.City;
  3. import com.zetcode.repository.CityRepository;
  4. import java.util.List;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.stereotype.Service;
  7. @Service
  8. public class CityService implements ICityService {
  9. @Autowired
  10. private CityRepository repository;
  11. @Override
  12. public List<City> findAll() {
  13. var cities = (List<City>) repository.findAll();
  14. return cities;
  15. }
  16. }

CityService包含findAll()方法的实现。 我们使用存储库从数据库检索数据。

  1. @Autowired
  2. private CityRepository repository;

注入CityRepository

  1. var cities = (List<City>) repository.findAll();

存储库的findAll()方法返回城市列表。

com/zetcode/MyController.java

  1. package com.zetcode.controller;
  2. import com.zetcode.model.City;
  3. import com.zetcode.service.ICityService;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.stereotype.Controller;
  6. import org.springframework.ui.Model;
  7. import org.springframework.web.bind.annotation.GetMapping;
  8. import java.util.List;
  9. @Controller
  10. public class MyController {
  11. @Autowired
  12. private ICityService cityService;
  13. @GetMapping("/showCities")
  14. public String findCities(Model model) {
  15. var cities = (List<City>) cityService.findAll();
  16. model.addAttribute("cities", cities);
  17. return "showCities";
  18. }
  19. }

MyController包含一个映射。

  1. @Autowired
  2. private ICityService cityService;

我们在countryService字段中插入ICityService

  1. @GetMapping("/showCities")
  2. public String findCities(Model model) {
  3. var cities = (List<City>) cityService.findAll();
  4. model.addAttribute("cities", cities);
  5. return "showCities";
  6. }

我们将带有showCities路径的请求映射到控制器的findCities()方法。 默认请求是 GET 请求。 该模型将获取城市列表,并将处理过程发送到showCities.html Thymeleaf 模板文件。

resources/templates/showCities.html

  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <title>Cities</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. </head>
  8. <body>
  9. <h2>List of cities</h2>
  10. <table>
  11. <tr>
  12. <th>Id</th>
  13. <th>Name</th>
  14. <th>Population</th>
  15. </tr>
  16. <tr th:each="city : ${cities}">
  17. <td th:text="${city.id}">Id</td>
  18. <td th:text="${city.name}">Name</td>
  19. <td th:text="${city.population}">Population</td>
  20. </tr>
  21. </table>
  22. </body>
  23. </html>

showCities.html模板文件中,我们在 HTML 表中显示数据。

resources/static/index.html

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Home page</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. </head>
  8. <body>
  9. <a href="showCities">Show cities</a>
  10. </body>
  11. </html>

index.html中有一个链接,显示所有城市。

com/zetcode/Application.java

  1. package com.zetcode;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. @SpringBootApplication
  5. public class Application {
  6. public static void main(String[] args) {
  7. SpringApplication.run(Application.class, args);
  8. }
  9. }

Application设置 Spring Boot 应用。 @SpringBootApplication启用自动配置和组件扫描。

  1. $ mvn spring-boot:run

应用运行后,我们可以导航到localhost:8080

在本教程中,我们展示了如何在 Spring Boot 应用中使用 PostgreSQL 数据库。 您可能也对相关教程感兴趣:

查找所有 Spring Boot 教程