天天看點

springcloud之注冊中心eureka 環境搭建

一、建立一個maven工程

springcloud之注冊中心eureka 環境搭建

二、在pom.xml 中加入以下依賴

<project xmlns="http://maven.apache.org/POM/4.0.0" 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">

  <modelVersion>4.0.0</modelVersion>

  <groupId>com.cloud</groupId>

  <artifactId>bt-cloud</artifactId>

  <version>0.0.1-SNAPSHOT</version>

  <name>bt-cloud</name>

  <description>bt-cloud</description>

      <parent>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-starter-parent</artifactId>

        <version>1.4.0.RELEASE</version> 

        <relativePath/>

    </parent>

    <properties>   

        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

        <java.version>1.8</java.version>

    </properties>

    <dependencies>

        <dependency>

            <groupId>org.springframework.cloud</groupId>

            <artifactId>spring-cloud-starter-eureka-server</artifactId>

        </dependency>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-starter-test</artifactId>

            <scope>test</scope>

    </dependencies>

    <dependencyManagement>

        <dependencies>

            <dependency>

                <groupId>org.springframework.cloud</groupId>

                <artifactId>spring-cloud-dependencies</artifactId>

                <version>Camden.SR3</version>

                <type>pom</type>

                <scope>import</scope>

            </dependency>

        </dependencies>

    </dependencyManagement>

</project>

三、編寫啟動類

package com.bt.app;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.SpringBootConfiguration;

import org.springframework.boot.autoconfigure.EnableAutoConfiguration;

import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@EnableEurekaServer

@EnableAutoConfiguration

@SpringBootConfiguration

public class EurekaServerApp {

public static void main(String[] args) {

SpringApplication.run(EurekaServerApp.class, args);

}

注意:

這兩個注意必須加入才能正常啟動

四、在src/main/resources 下建立 application.yml,加入如下配置

server:

  port: 8761

eureka:

  instance:

    hostname: localhost

  client:

    registerWithEureka: false

    fetchRegistry: false

    serviceUrl:

      defaultZone:

http://${eureka.instance.hostname}:${server.port}/eureka/

五、啟動EurekaServerApp類中的main 方法,控制台中輸出如下

springcloud之注冊中心eureka 環境搭建

六、在浏覽器中輸入http://localhost:8761/

springcloud之注冊中心eureka 環境搭建

此時EurekaServer 注冊中心搭建成功

繼續閱讀