属性
| 值
|
postgresql.embbed.enable
| 是否使用内嵌数据库,true:使用 false:不使用。如果配置为false,必要把该文件中jdbc下的数据库连接信息更改为自己的数据库地点,用户名以及密码。
|
postgresql.database
| 是否使用内嵌数据库默认连接的数据库,默以为matflow-ee如果更改次默认值必要把jdbc下的数据库连接信息更改为新的数据地点。
|
postgresql.db.port
| 使用内嵌数据库的启动端口,默以为9301,如果更改必要同时把jdbc.url中的数据库连接地点端口更改。
|
postgresql.db.username
| 使用内嵌数据库的用户名,默以为postgres,如果更改必要同时把jdbc.username中的数据库连接地点用户名更改。
|
postgresql.db.password
| 使用内嵌数据库的密码,默以为darth2020,如果更改必要同时把jdbc.password中的数据库连接地点密码更改。
|
postgresql.db.address
| 使用内嵌数据库的数据库文件生存位置,默以为${DATA_HOME}/postgresql,即默认的应用数据目次下的postgresql目次。注:如果更改该目次,该路径目次必须为空目次,否则会导致数据库无法启动。
|
jdbc.url
| 默认是:jdbc:postgresql://localhost:9301/postin_db?stringtype=unspecified
其中 9301 为端标语,postin_db为数据库名字,这两个可更改
但是端标语必须与postgresql.db.port 保持一致
数据库名字必须与postgresql.database 保持一致
|
jdbc.username
| 数据库登录名,必须与postgresql.db.username一致
|
jdbc.password
| 数据库登录密码,必须与postgresql.db.password一致
|