build.gradle
dependencies {
    compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-client') // 3. To use Eureka client
}
EurekaServiceApplication
@EnableEurekaClient 
@SpringBootApplication 
public class EurekaServiceApplication { 
 public static void main(String[] args) { 
 SpringApplication.run(EurekaServiceApplication.class); 
 } 
}
application.yml
application.yml 
spring: 
 cloud: 
 service-registry: 
 auto-registration: 
   enabled: false #현재 인스턴스를 Reigstry 에 등록하지 않고 싶을 때 false
  • 특별한 시나리오 없이 DiscoveryClient 직접 호출 필요 없음
  • (Ribbon 이 DiscoveryClient 를 이용해서 서버 목록을 가져옴)

  • No labels
Write a comment…