1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- server:
- port: 8099
- servlet:
- context-path: /task/
- spring:
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://39.100.230.190:8092/crocodile?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=round&transformedBitIsBoolean=true&allowMultiQueries=true
- username: root
- password: 'Jh@Jh2019!'
- filters: stat
- maxActive: 10
- initialSize: 5
- maxWait: 60000
- minIdle: 1
- timeBetweenEvictionRunsMillis: 60000
- minEvictableIdleTimeMillis: 300000
- testWhileIdle: true
- testOnBorrow: false
- testOnReturn: false
- poolPreparedStatements: false
- maxOpenPreparedStatements: 20
- validationQuery: 'show status like "%Service_Status%"'
- onsite:
- task:
- cron: 0 0 2 * * ?
- #每日执行job时间 每日2点用于执行onsite任务的生成
- remind:
- work:
- cron: 0 */5 * * * ?
- #onsite 工作提醒
- first:
- task:
- cron: 0 0 2 * * ?
- #每日执行job时间 每日2点用于执行onsite任务的生成
- remind:
- work:
- cron: 0 */5 * * * ?
- #onsite 工作提醒
- wx:
- minprogram:
- miniprogramState: trial
|