【发布时间】:2019-09-12 09:27:30
【问题描述】:
我想在 build-gradle 任务 deployNodes 中将默认 h2 数据库的配置替换为 postgres 实现
我想替换条目h2Port 10013
与
dataSourceProperties: {
dataSourceClassName: "org.postgresql.ds.PGSimpleDataSource",
dataSource.url: "jdbc:postgresql://localhost:5432/postgres_xyz?currentSchema=public",
dataSource.user: "xyz",
dataSource.password: "xyz",
dataSource.currentSchema: "public"
}
database: {
transactionIsolationLevel: "READ_COMMITTED"
}
我该怎么做/我可以使用哪种格式?
【问题讨论】:
标签: postgresql gradle corda