123456789101112131415161718192021222324252627282930313233 |
- spring:
- redis:
- host: 192.168.50.114
- # host: localhost
- port: 6379
- password:
- # password: jingang@redis
- jedis:
- pool:
- max-active: 8
- max-wait: -1
- max-idle: 500
- min-idle: 0
- lettuce:
- shutdown-timeout: 0
- database: 0
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- #自定义http配置
- http_pool:
- max_total: 200
- default_max_per_route: 100
- connect_timeout: 5000
- connection_request_timeout: 1000
- socket_timeout: 65000
- validate_after_inactivity: 2000
- pagehelper:
- helper-dialect: mysql
- reasonable: true
- support-methods-arguments: true
- params: count=countSql
|