12345678910111213141516171819202122232425262728293031 |
- #---------------------------------数据库配置----------------------------------#
- spring:
- datasource:
- url: jdbc:mysql://192.168.36.128:3306/webchat_act?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT%2b8&allowPublicKeyRetrieval=true
- username: webchat_act
- password: siKB2dJPxKhERayG
- driver-class-name: com.mysql.jdbc.Driver
- hikari:
- maximum-pool-size: 10
- jpa:
- show-sql: true
- #---------------------------------redis----------------------------------#
- data:
- redis:
- host: 192.168.36.128
- port: 26739
- password: ZiFiE3JkwCN5S5FF
- database: 6
- jedis:
- timeout: 5000
- pool:
- max-active: 100
- max-wait: -1
- min-idle: 10
- rocketmq:
- name-server: 192.168.36.128:9876
- consumer:
- group: web_chat
- producer:
- group: web_chat
|