| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- spring:
- application:
- name: tr-dev
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- driverClassName: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://192.168.100.32:3306/tr-footstone?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=GMT%2B8&autoReconnect=true&useInformationSchema=true
- username: root
- password: 123456
- redis:
- # 地址
- host: 192.168.100.32
- # 端口,默认为6379
- port: 9736
- # 数据库索引
- database: 8
- # 密码
- password: 6E6985E1F7CB40F24A\.
- # 连接超时时间
- timeout: 30s
- lettuce:
- pool:
- # 连接池中的最小空闲连接
- min-idle: 16
- # 连接池中的最大空闲连接
- max-idle: 16
- # 连接池的最大数据库连接数
- max-active: 16
- # #连接池最大阻塞等待时间(使用负值表示没有限制)
- max-wait: -1ms
- rabbitmq:
- host: 192.168.100.32
- port: 5672
- username: guest
- password: guest
- listener:
- simple:
- acknowledge-mode: auto
- # publisher-confirms: true
- publisher-returns: true
|