spring-cloud入门(一):eureka-server(服务发现)

前言

Eureka是一个服务发现和注册框架,细的来说,我们可以分为eureka-server(服务发现)和eureka-client(服务注册)两个,本次我们对eureka-server(服务发现)做一个项目搭建,作为spring-cloud的开篇。

开源地址:https://github.com/bigbeef
个人博客:http://blog.cppba.com

项目结构

spring-cloud入门(一):eureka-server(服务发现)_第1张图片

maven结构大家应该都清楚(不清楚的需要补一补,百度关于maven的文章不计其数),下面我们来看一看这些关键文件的配置

代码编写

cppba-spring-cloud > pom.xml


    4.0.0
    com.cppba
    cppba-spring-cloud
    1.0.0
    pom
    ${project.artifactId}

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

    
        UTF-8
        1.8
        Dalston.SR2
    

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

    
        cppba-spring-cloud-eureka-server
    



cppba-spring-cloud-eureka-server > pom.xml



    4.0.0
    cppba-spring-cloud-eureka-server
    jar
    ${project.artifactId}

    
        com.cppba
        cppba-spring-cloud
        1.0.0
    

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

        
        ${project.name}
        
            
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
      

SpringCloudEurekaServerApplication.java

package com.cppba;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@EnableEurekaServer
@SpringBootApplication
public class SpringCloudEurekaServerApplication {

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

application.properties

server.port=8761

eureka.instance.hostname=eureka-server
eureka.client.registerWithEureka=false
eureka.client.fetchRegistry=false
eureka.client.serviceUrl.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka/

到此项目搭建完成

启动项目

我们启动SpringCloudEurekaServerApplication中的main方法,访问http://127.0.0.1:8761


spring-cloud入门(一):eureka-server(服务发现)_第2张图片

到此,eureka-server(服务发现)项目搭建成功

你可能感兴趣的:(spring-cloud入门(一):eureka-server(服务发现))