刘光辉
昨天 bb638871a7fb692d80f1b7a758f991dc0879002c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
  level:
    # 等级 TRACE,DEBUG,INFO,WARN,ERROR(不区分大小写)
    root: info
    org.flowable.engine.impl.persistence.entity.*: debug
    org.flowable.task.service.impl.persistence.entity.*: debug
 
log:
  level:
    # 等级 TRACE,DEBUG,INFO,WARN,ERROR(不区分大小写)
    root: info
  path: log/${spring.application.name}
 
# SpringDoc接口文档 访问地址:http://127.0.0.1:31000/doc.html
springdoc:
  default-flat-param-object: true
  api-docs:
    enabled: true
 
#SpringDoc增强
#knife4j:
#  basic: #接口文档访问鉴权
#    enable: true
#    username: jnpf
#    password: 123456
#  enable: true