Files
spring-cloud-gateway/order-service/src/main/resources/application.yml
2022-04-20 23:47:36 +09:00

27 lines
570 B
YAML

server:
port: 0
spring:
application:
name: order-service
h2:
console:
enabled: true
settings:
web-allow-others: true
path: /h2-console
datasource:
driver-class-name: org.h2.Driver
url: jdbc:h2:mem:testdb
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(Order Service).