12345678910111213141516171819202122 |
- eureka:
- client:
- service-url:
- defaultZone: http://localhost:8801/eureka/
- # instance:
- # hostname: clientName
- spring:
- application:
- name: User-service
- profiles:
- include: secret
- #出于安全原因application-secret.yml被纳入.gitignore中,
- #application-secret.yml包含以下信息。
- #wx:
- # miniapp:
- # appid: #微信小程序的appid
- # secret: #微信小程序的Secret
- # token: #微信小程序消息服务器配置的token
- # aesKey: #微信小程序消息服务器配置的EncodingAESKey
- # msgDataFormat: JSON
- server:
- port: 8802
|