欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【springcloud入门到精通系列】2.创建单实例eureka-server服务注册中心

程序员文章站 2022-06-13 15:32:47
...

1.在父项目spring-cloud-study项目中新建一个mavan模块 eureka-server-7001

【springcloud入门到精通系列】2.创建单实例eureka-server服务注册中心

2.修改子模块 pom.xml配置,引入spring-cloud-starter-netflix-eureka-server依赖,如下:

<?xml version="1.0" encoding="UTF-8"?>
<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">
    <parent>
        <artifactId>spring-cloud-study</artifactId>
        <groupId>org.andy.springcloud</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <description>Eureka-server单实例服务中心 端口7001</description>
    <artifactId>eureka-server-7001</artifactId>


    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>


</project>

3.新建服务中心启动类 com.andy.springcloud.server.EurekaServerApplication.java

package com.andy.springcloud.server;

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

/**
 * <h1>Eureka服务注册中心启动类</h1>
 * Created Time 2019/12/19 十二月 14:19
 * Created by   andy/aaa@qq.com
 */
@EnableEurekaServer
@SpringBootApplication
public class EurekaServerApplication {

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

}

4.在resources目录下新建application.yml并修改配置文件

server:
    port: 7001               # 服务中心端口

spring:
    application:
        name: eureka-server   # 服务名字  

eureka:
    instance:
        hostname: eureka01    # hosts文件中配置的 别名
    client:
        fetch-registry: false #是否从服务器获取eureka注册信息
        register-with-eureka: false #是否将自己注册至eureka服务器
        service-url:
            defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka

5.子项目整体结构:

【springcloud入门到精通系列】2.创建单实例eureka-server服务注册中心

6.启动项目 并访问运行

【springcloud入门到精通系列】2.创建单实例eureka-server服务注册中心

浏览器输入 localhost:7001 访问如下:

【springcloud入门到精通系列】2.创建单实例eureka-server服务注册中心

到此 单实例服务中心创建完成