Добавьте PostgreSQL
зависимость в build.gradle
runtimeOnly 'org.postgresql:postgresql'
затем добавьте свойства в application.properties
spring.datasource.url= jdbc:postgresql://localhost:5432/sample
spring.datasource.jdbc-url=${spring.datasource.url}
spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.platform=postgres
spring.datasource.username=postgres
spring.datasource.password=password
, а затем реализуйте JPA, jdbctemplate,..
в своем коде.