server: port: 0
spring: application: name: user-service
h2: console: enabled: true settings: web-allow-others: true
datasource: username: sa password: driver-class-name: org.h2.Driver url: jdbc:h2:mem:testdb
rabbitmq: host: 127.0.0.1 port: 5672 username: guest password: guest
eureka: instance: instanceId: ${spring.application.name}:${spring.application.instance_id:${random.value}} client: register-with-eureka: true fetch-registry: true service-url: defaultZone: http://localhost:8761/eureka
greeting: message: Welcome to the Simple E-commerce.
management: endpoints: web: exposure: include: refresh, health, beans, busrefresh
logging: level: com.example.userservice.client: DEBUG
|