spring: # set mysql config datasource: url: jdbc:mysql://127.0.0.1:3306/webchat?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2b8&useSSL=false username: root password: 12345678 driver-class-name: com.mysql.jdbc.Driver hikari: maximum-pool-size: 50 jpa: show-sql: true # set redis config data: redis: host: 127.0.0.1 port: 6379 database: 0 jedis: timeout: 5000 pool: max-active: 100 max-wait: -1 min-idle: 10