123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- jasypt:
- encryptor:
- password: tofly
- spring:
- redis:
- password:
- host: tofly-redis
- jedis:
- pool:
- max-idle: 30
- min-idle: 10
- max-active: 20
- max-wait: 10000
-
- zipkin:
- enabled: true
- base-url: http://127.0.0.1:6002
- sleuth:
- web:
- client:
- enabled: true
- sampler:
-
-
- probability: 1.0
- servlet:
- multipart:
- max-file-size: 100MB
- max-request-size: 100MB
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- management:
- endpoints:
- web:
- exposure:
- include: '*'
- feign:
- hystrix:
- enabled: true
- okhttp:
- enabled: true
- httpclient:
- enabled: false
- client:
- config:
- default:
- connectTimeout: 10000
- readTimeout: 10000
- compression:
- request:
- enabled: true
- response:
- enabled: true
- hystrix:
- command:
- default:
- execution:
- isolation:
- strategy: SEMAPHORE
- thread:
- timeoutInMilliseconds: 60000
- shareSecurityContext: true
- ribbon:
- ReadTimeout: 10000
- ConnectTimeout: 10000
- mybatis-plus:
- type-aliases-package: com.tofly.*.entity,com.tofly.*.custom.entity
- mapper-locations: classpath*:/mapper/*Mapper.xml,classpath*:/customMapper/*Mapper.xml
- global-config:
- banner: false
- db-config:
-
- id-type: 1
- field-strategy: 1
- table-underline: true
- logic-delete-value: 0
- logic-not-delete-value: 1
- db-type: oracle
- configuration:
- map-underscore-to-camel-case: true
- call-setters-on-nulls: true
- jdbc-type-for-null: null
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
-
- security:
- oauth2:
- resource:
- loadBalanced: true
- token-info-uri: http://tofly-auth/oauth/check_token
- ftp:
- enable: true
- server: tofly-ftp
- port: 8033
- userName: ENC(tjdOntnkeceeo/aiTdGifA==)
- password: ENC(tjdOntnkeceeo/aiTdGifA==)
- eureka:
- instance:
- leaseRenewalIntervalInSeconds: 10
- health-check-url-path: /actuator/health
- metadata-map:
- startup: ${random.int}
|