application.yml 577 B

12345678910111213141516171819202122
  1. eureka:
  2. client:
  3. service-url:
  4. defaultZone: http://localhost:8801/eureka/
  5. # instance:
  6. # hostname: clientName
  7. spring:
  8. application:
  9. name: User-service
  10. profiles:
  11. include: secret
  12. #出于安全原因application-secret.yml被纳入.gitignore中,
  13. #application-secret.yml包含以下信息。
  14. #wx:
  15. # miniapp:
  16. # appid: #微信小程序的appid
  17. # secret: #微信小程序的Secret
  18. # token: #微信小程序消息服务器配置的token
  19. # aesKey: #微信小程序消息服务器配置的EncodingAESKey
  20. # msgDataFormat: JSON
  21. server:
  22. port: 8802