12345678910111213141516171819202122232425262728 |
- server:
- port: 8052
- spring:
- datasource:
- dynamic:
- datasource:
- master:
- url: jdbc:mysql://192.168.0.24:3306/xy-authorize?characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false
- username: xyadmin
- password: '#Xynet2022'
- mybatis-plus:
- configuration:
- log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl
- #微服务相关配置
- cloud:
- center:
- url: 192.168.0.24:8848
- service:
- name: authorize
- ip: 192.168.0.23
- #雪花ID唯一标识
- workerId: 20
- mysql:
- doc: true
|