跳到主要内容

Spring Data

信息

Spring Data Commons 项目将 Spring 的核心概念应用于使用许多关系型和非关系型数据存储的解决方案的开发。

官方文档 | 中文文档

配置文件

src/main/resources/application.yaml
spring:
datasource:
username: postgres
password: postgres
url: jdbc:postgresql://localhost:5432/postgres
driver-class-name: org.postgresql.Driver

对 Kotlin 的支持

参考:官方文档 | 中文文档