server.port=21884 spring.application.name=bank-service spring.jackson.date-format=yyyy-MM-dd HH:mm:ss spring.jackson.time-zone=GMT+8 #mysql datasource setting spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.type=com.alibaba.druid.pool.DruidDataSource spring.datasource.url=jdbc:mysql://172.16.90.253:3306/cq-carbon-platform?characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useSSL=false&&allowMultiQueries=true #spring.datasource.url=jdbc:mysql://192.168.1.52:3306/carbon-platform?characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useSSL=true&&allowMultiQueries=true spring.datasource.username=root spring.datasource.password=123456 #spring.datasource.password=root spring.datasource.initialSize=5 spring.datasource.minIdle=5 spring.datasource.maxActive=20 spring.datasource.maxWait=60000 spring.datasource.timeBetweenEvictionRunsMillis=60000 spring.datasource.minEvictableIdleTimeMillis=30000 spring.datasource.validationQuery=SELECT 1 spring.datasource.testWhileIdle=true spring.datasource.testOnBorrow=false spring.datasource.testOnReturn=false spring.datasource.poolPreparedStatements=true spring.datasource.maxPoolPreparedStatementPerConnectionSize=20 spring.datasource.filters=stat,wall spring.datasource.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=2000 #mybatis setting mybatis.type-aliases-package=com.hcloud.microserver.sys.facade.entity mybatis.mapper-locations=classpath:mappers/*.xml mybatis.check-config-location=true mybatis.executor-type=simple #pagehelper setting pagehelper.helperDialect=mysql pagehelper.reasonable=true pagehelper.supportMethodsArguments=true pagehelper.params=count=countSql # Max number of retries on the same server (excluding the first try) system-service.ribbon.MaxAutoRetries=1 # Max number of next servers to retry (excluding the first server) system-service.ribbon.MaxAutoRetriesNextServer=1 # Whether all operations can be retried for this client system-service.ribbon.OkToRetryOnAllOperations=true # Interval to refresh the server list from the source system-service.ribbon.ServerListRefreshInterval=2000 # Connect timeout used by Apache HttpClient system-service.ribbon.ConnectTimeout=50000 # Read timeout used by Apache HttpClient system-service.ribbon.ReadTimeout=50000 #zuul timeout setting zuul.host.connect-timeout-millis=10000 zuul.host.socket-timeout-millis=10000 #hystix timeout setting hystrix.metrics.enabled=true hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=10000 # eureka setting eureka.instance.preferIpAddress=true eureka.instance.hostname=localhost #eureka.client.service-url.defaultZone=http://192.168.1.58:8761/eureka/ eureka.client.service-url.defaultZone=http://127.0.0.1:8761/eureka/ ###redis配置######### spring.redis.database=0 spring.redis.host=172.16.90.64 #spring.redis.host=192.168.56.101 spring.redis.port=6379 spring.redis.pool.max-idle=8 spring.redis.pool.min-idle=0 spring.redis.pool.max-active=10 spring.redis.pool.max-wait=-1 spring.redis.timeout=5000 cqrcb.bank.sign.ip=172.16.90.102 cqrcb.bank.sign.port=8853 cqrcb.bank.sslclient.ip=172.16.90.102 cqrcb.bank.sslclient.port=8852 spring.jackson.default-property-inclusion=non_null