server:
port: 8081
spring:
application:
name: display
hystrix:
command:
productInfo: # command key. use 'default' for global setting.
execution:
isolation:
thread:
timeoutInMilliseconds: 3000
circuitBreaker:
requestVolumeThreshold: 1 # Minimum number of request to calculate circuit breaker's health. default 20
errorThresholdPercentage: 50 # Error percentage to open circuit. default 50
product:
ribbon:
# listOfServers: localhost:8082,localhost:7777 #서버 주소는 Eureka Server에서 가져와라!
MaxAutoRetries: 0
MaxAutoRetriesNextServer: 1
eureka:
instance:
prefer-ip-address: true
client:
service-url:
defaultZone: http://127.0.0.1:8761/eureka # default address |