如果想使用PostgreSQL数据库,则需要完成如下步骤:

  • 执行db/postgresql/maku.sql文件,初始化MySQL数据库
  • 在Nacos里面,修改数据库配置datasource.yaml,如下所示:
spring:
  datasource:
    driver-class-name: org.postgresql.Driver
    url: jdbc:postgresql://localhost:5432/postgres
    username: postgres
    password: 123456
  • 完成上面2步骤后,再启动项目即可