在springboot里使用postgresql
# 基本配置 需要配置依赖,用户名,密码,数据库名,以及 JPA。 在 pom.xml 中添加 PostgreSQL 驱动和 Spring Data JPA 依赖 <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>runtime</scope> </dependency>...
more...