springcloud微服务实战 学习笔记一 服务注册中心

服务注册中心

  • 添加依赖

      
          org.springframework.boot
          spring-boot-starter-parent
          1.5.4.RELEASE
           
      
      
          UTF-8
          UTF-8
          1.8
      
    
      
    
          
              org.springframework.boot
              spring-boot-starter-test
              test
          
    
          
              org.springframework.cloud
              spring-cloud-starter-eureka-server
          
      
    
      
          
              
                  org.springframework.cloud
                  spring-cloud-dependencies
                  Dalston.SR1
                  pom
                  import
              
          
      
    
      
          
              
                  org.springframework.boot
                  spring-boot-maven-plugin
              
          
      
    
  • 配置文件

      spring.application.name=eureka-server
      eureka.instance.hostname=localhost
      server.port=1111
      #禁用自身注册为客户端
      eureka.client.register-with-eureka=false
      eureka.client.fetch-registry=false
    
  • Application.java

      @EnableEurekaServer //启动一个服务注册中心提供给其他应用进行对话
      @SpringBootApplication
      public class Application {
      
          public static void main(String[] args) {
              new SpringApplicationBuilder(Application.class).web(true).run(args);
          }
      }

你可能感兴趣的:(springcloud微服务实战 学习笔记一 服务注册中心)