Circuit Breaker 적용을 위한 Project 구조 Item Service Projecthttps://github.com/bwcho75/msa_pattern_sample/tree/master/item-spring-hystrix User Service Project 1. Maven Dependency 추가 Spring Starter Project 생성 후 Circuit Breaker 적용을 위해 maven dependency를 추가해 주어야 한다.spring-cloud-starter-hystrix 는 Hystrix circuit breaker를 이용한 의존성이고 hystrix-dashboard와 actuator 는 hystix dash 보드를 띄우기 위한 의존성이다.프로젝트 내의 pom.xml을 ..