Spring Cloud eureka服务搭建

一、创建springboot工程、Eureka注册中心

1、引入maven依赖


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





        1.8
        Finchley.RC2
    


    
        
            org.springframework.boot
            spring-boot-starter
        

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

        
            org.springframework.boot
            spring-boot-starter-test
            test
            
                
                    org.junit.vintage
                    junit-vintage-engine
                
            
        
    




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

2、application.properties文件

server.port=2222

eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
eureka.client.serviceUrl.defaultZone=http://localhost:${server.port}/eureka/

3、Application.java 启动类增加@EnableEurekaServer注解

@SpringBootApplication
@EnableEurekaServer
public class DemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }

}

4、浏览器输入http://localhost:2222/访问如下

Spring Cloud eureka服务搭建_第1张图片

 

二、创建服务提供者

1、创建一个springboot工程,引入maven依赖

 
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-server
            2.0.0.RC2
        

2、application.properties文件添加如下:


server.port=7001
spring.application.name=provider
eureka.client.service-url.defaultZone=http://127.0.0.1:2222/eureka/

3、启动类增加@EnableEurekaServer

@SpringBootApplication
@EnableEurekaServer
public class Application {

    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }

}

4、启动服务提供者,启动成功后访问:http://localhost:2222/

Spring Cloud eureka服务搭建_第2张图片

可以看到eureka已经成功注册了服务提供者

你可能感兴趣的:(Springboot)