| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- management:
- health:
- mail:
- enabled: false
- server:
- servlet:
- context-path: /actuator
- # endpoints:
- # web:
- # exposure:
- # include: '*'
- # endpoint:
- # health:
- # show-details: always
- # # 开启在线日志查看功能
- # logfile:
- # enabled: true
- server:
- port: 30020
- servlet:
- context-path: /xxl-job-admin
- spring:
- profiles:
- # 指定环境配置 dev(开发环境-默认)、test(测试环境)、preview(预生产环境)、prod(生产环境)
- active: dev
- main:
- allow-bean-definition-overriding: true
- application:
- name: xxl-job-register
- freemarker:
- charset: UTF-8
- request-context-attribute: request
- settings:
- number_format: 0.##########
- new_builtin_class_resolver: safer
- suffix: .ftl
- templateLoaderPath: classpath:/templates/
- mail:
- from: xxx@qq.com
- host: smtp.qq.com
- password: xxx
- port: 25
- properties:
- mail:
- smtp:
- auth: true
- socketFactory:
- class: javax.net.ssl.SSLSocketFactory
- starttls:
- enable: true
- required: true
- username: xxx@qq.com
- mvc:
- servlet:
- load-on-startup: 0
- static-path-pattern: /static/**
- static-locations: classpath:/static/
- xxl:
- job:
- accessToken: '432e62f3b488bc861d91b0e274e850cc'
- timeout: 3
- i18n: zh_CN
- logretentiondays: 30
- triggerpool:
- fast:
- max: 200
- slow:
- max: 100
|