22 lines
547 B
YAML
22 lines
547 B
YAML
server:
|
|
port: 7011
|
|
|
|
spring:
|
|
datasource:
|
|
url: jdbc:postgresql://192.168.1.26:5432/xinghe-codegen
|
|
username: postgres
|
|
password: root
|
|
driver-class-name: org.postgresql.Driver
|
|
type: com.zaxxer.hikari.HikariDataSource # 使用 HikariCP 作为连接池
|
|
hikari:
|
|
maximum-pool-size: 20
|
|
minimum-idle: 5
|
|
connection-timeout: 60000
|
|
idle-timeout: 300000
|
|
max-lifetime: 1200000
|
|
validation-timeout: 5000
|
|
leak-detection-threshold: 60000
|
|
|
|
liteflow:
|
|
rule-source: liteflow/*.el.xml
|
|
enable: true |