SpringCloud搭建EurekaClient

1.pomxml

         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.0.0
  com.system.cloud
  member
  0.0.1-SNAPSHOT

      
    
        org.springframework.boot
        spring-boot-starter-parent
        2.0.1.RELEASE
        
    

    
    
    
        UTF-8
        UTF-8
        1.8
        Finchley.RC1
    

    
    
        
        
            org.springframework.boot
            spring-boot-starter-web
        

        
        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-client
        

        
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        

    

    
    
        
            
                org.springframework.cloud
                spring-cloud-dependencies
                ${spring-cloud.version}
                pom
                import
            

        

    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            

        

    

    
        
            spring-snapshots
            Spring Snapshots
            https://repo.spring.io/snapshot
            
                true
            

        

        
            spring-milestones
            Spring Milestones
            https://repo.spring.io/milestone
            
                false
            

        

    

2.在启动类中加入

@EnableDiscoveryClient

3.在application.properties

spring.application.name=member # 模块名称,也是向Eureka服务端注册的ID
server.port=8071
eureka.client.server-url.defaultZone=http://localhost:8761/eureka/ # 指向Eureka服务端

你可能感兴趣的:(springcloud,eureka)