| 1234567891011121314151617181920212223 |
- server:
- port: 8201
- spring:
- application:
- name: wei-user
- cloud:
- consul:
- # consul的IP
- host: 192.168.11.128
- # consul启动端口
- port: 8500
- profiles:
- active: dev
- datasource:
- url: jdbc:mysql://192.168.11.128:3306/wei_user?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=CTT
- username: root
- password: 123456
- redis:
- host: 192.168.11.128
- port: 6379
|