|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- server:
- port: 38888
- servlet:
- context-path: /pm
-
- spring:
- mvc:
- pathmatch:
- matching-strategy: ant_path_matcher
- session:
- store-type: redis
- redis:
- namespace: "spring:session"
- redis:
- timeout: 5000
- host: 47.98.125.47
- port: 26379
- database: 0
- password: Ndkj1234
- jedis:
- pool:
- max-active: 200
- max-idle: 500
- min-idle: 8
- max-wait: 10000
- application:
- name: pm
- jackson:
- default-property-inclusion: non_null
- time-zone: GMT+8
- date-format: yyyy-MM-dd HH:mm:ss
- jpa:
- properties:
- hibernate:
- default_schema: PUBLIC
- hbm2ddl:
- auto: update
- show_sql: true
- show-sql: true
- hibernate:
- ddl-auto: update
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- driverClassName: com.kingbase8.Driver
- # 数据源
- druid:
- url: jdbc:kingbase8://120.26.44.207:54321/nd_project_management?zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8
- username: SYSTEM
- password: Ndkj1234
- # 初始连接数
- initialSize: 5
- # 最小连接池数量
- minIdle: 10
- # 最大连接池数量
- maxActive: 20
- # 配置获取连接等待超时的时间
- maxWait: 60000
- # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
- timeBetweenEvictionRunsMillis: 60000
- # 配置一个连接在池中最小生存的时间,单位是毫秒
- minEvictableIdleTimeMillis: 300000
- # 配置一个连接在池中最大生存的时间,单位是毫秒
- maxEvictableIdleTimeMillis: 900000
- # 配置检测连接是否有效
- #mysql使用:SELECT 1 FROM DUAL
- validationQuery: SELECT 1
- testWhileIdle: true
- testOnBorrow: false
- testOnReturn: false
- webStatFilter:
- enabled: true
- statViewServlet:
- enabled: true
- # 设置白名单,不填则允许所有访问
- allow:
- url-pattern: /druid/*
- # 控制台管理用户名和密码
- login-username: admin
- login-password: admin
- filter:
- stat:
- enabled: true
- # 慢SQL记录
- log-slow-sql: true
- slow-sql-millis: 1000
- merge-sql: true
- wall:
- config:
- multi-statement-allow: true
- mybatis-plus:
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- global-config:
- db-config:
- logic-delete-value: true
- logic-not-delete-value: false
- logging:
- config: classpath:logback-spring.xml
- #日志配置
- level:
- root: info
- file:
- path: logs
- nd:
- cache:
- type: REDIS
- serializerType: ProtoStuff
- cacheNullVal: true
- def:
- keyPrefix: pm
- log:
- enabled: true
- type: DB
- # 文件存储
- file:
- storage-type: ALI_OSS
- ali:
- protocol: https://
- bucket: devplat
- urlPrefix: oss-cn-hangzhou.aliyuncs.com
- endpoint: oss-cn-hangzhou.aliyuncs.com
- accessKeyId: LTAI4GL7uypycnBjiRn55rMG
- accessKeySecret: qwYC7bW9bkStsko7qkLVnToAzj0Y98
- # 日志文件配置
- log:
- path: ./logs
- info:
- file-size: 50MB
- max-size: 5
- total-size: 200MB
- error:
- file-size: 10MB
- max-size: 5
- total-size: 50MB
-
- swagger:
- enabled: true
-
- flowable:
- async-executor-activate: true
- #关闭一些不需要的功能服务
- rest-api-enabled: false
- idm:
- enabled: false
- common:
- enabled: false
- dmn:
- enabled: false
- form:
- enabled: false
- app:
- enabled: false
-
- wflow:
- file:
- max-size: 20 #最大文件上传大小,MB
-
- sa-token:
- # token 名称 (同时也是cookie名称)
- token-name: wflowToken
- # token 有效期,单位s 默认30天, -1代表永不过期
- timeout: 172800
- # token 临时有效期 (指定时间内无操作就视为token过期) 单位: 秒
- activity-timeout: -1
- # 是否允许同一账号并发登录 (为true时允许一起登录, 为false时新登录挤掉旧登录)
- is-concurrent: true
- # 在多人登录同一账号时,是否共用一个token (为true时所有登录共用一个token, 为false时每次登录新建一个token)
- is-share: false
- # token风格
- token-style: uuid
- # 是否输出操作日志
- is-log: false
- #浙政钉公司顶级organizationCode
- organization:
- dept-visible-scopes:
- - GO_ff70e47bae684fdba0d64f4acab85661
-
- yxt:
- wsdl-url: http://115.239.137.23:9501/ws/v1?wsdl
- #wsdl-url: file:///opt/nd-emapi/wsdl.xml
- #账号
- user-code: hzndkj
- #密码
- password: hzndkj@2021
- #音信通开关
- sms-enable: true
- tel-enable: true
|