123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- spring:
- datasource:
- druid:
- # url: jdbc:mysql://192.168.1.29:3306/std_ttc_dev?autoReconnect=true&useUnicode=TRUE&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
- # username: ttcDev
- # password: ttc123456
- # url: jdbc:mysql://192.168.0.27:3306/std_ttc_dev?autoReconnect=true&allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
- url: jdbc:mysql://192.168.1.127:3306/std_ttc_dev?autoReconnect=true&allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
- username: root
- password: root
- data:
- elasticsearch:
- cluster-name: ttc_test_es
- # cluster-nodes: 192.168.0.28:9300,192.168.0.29:9300,192.168.0.30:9300
- cluster-nodes: 192.168.1.127:9300,192.168.1.127:9301,192.168.1.127:9302
- # typename: esttc
- # indexname: ttcdev
- # label_common_indexname: label_common_dev
- # label_custom_indexname: label_custom_dev
- # label_connection_indexname: label_connection_dev
- typename: esttc
- indexname: ttctest
- label_common_indexname: labelcommon
- label_custom_indexname: labelcustom
- label_connection_indexname: labelconnection
- #redis:
- # host: 192.168.0.29
- # port: 6379
- # password: 123
- redis:
- port: 6379
- host: localhost
- lettuce:
- pool:
- max-active: 8 # 连接池最大连接数
- max-idle: 8 # 连接池最大空闲连接数
- min-idle: 0 # 连接池最小空闲连接数
- max-wait: -1ms # 连接池最大阻塞等待时间,负值表示没有限制
- #fdfs:
- # domain: http://192.168.0.28:12345
- # trackerList: 192.168.0.28:22122
- fdfs:
- domain: http://192.168.1.128:12345
- trackerList: 192.168.1.128:22122
- push:
- common:
- dir:
- base: F:\\ghj\\prooooject\\test\\push
- # 上传文件存储文件夹
- upload: ${push.common.dir.base}\\upload\\
- imag: ${push.common.dir.base}\\upload\\img\\
- excl: ${push.common.dir.base}\\upload\\excel\\
- model: ${push.common.dir.base}\\model\\
- export: ${push.common.dir.base}\\model\\export\\
- research: ${push.common.dir.base}\\model\\research\\
- url:
- # ip
- base: http://192.168.1.128:12345/
- path: ${push.common.url.base}/upload/down/
|