Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Code Block
languagegroovy
titlebuild.gradle
linenumberstrue
dependencies {
    compile('org.springframework.cloud:spring-cloud-starter-netflix-eureka-client') // 3. To use Eureka client
}
Code Block
languagejava
titleEurekaServiceApplication
linenumberstrue
@EnableEurekaClient 
@SpringBootApplication 
public class EurekaServiceApplication { 
 public static void main(String[] args) { 
 SpringApplication.run(EurekaServiceApplication.class); 
 } 
}
Code Block
languagejavayml
titleapplication.yml
application.yml 
spring: 
 cloud: 
 service-registry: 
 auto-registration: 
   enabled: false #현재 인스턴스를 Reigstry 에 등록하지 않고 싶을 때 false

...