1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| spring:
| application:
| name: jnpf-workflow
| profiles:
| # 指定环境配置 dev(开发环境-默认)、test(测试环境)、preview(预生产)、prod(生产环境)
| active: dev
| main:
| allow-bean-definition-overriding: true
| allow-circular-references: true
|
| logging:
| config: classpath:logback-spring.xml
| springdoc:
| default-flat-param-object: true
| api-docs:
| enabled: true
|
|