application.yml 341 B

123456789101112131415161718
  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. datasource:
  11. url: jdbc:mysql://localhost:3306/user_service
  12. username: root
  13. password: 1234
  14. driver-class-name: com.mysql.cj.jdbc.Driver
  15. server:
  16. port: 8802