SpringCloud之Eureka

前面的話】SpringCloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)的一些工具,包括配置管理、服務(wù)發(fā)現(xiàn)、斷路器、路由、微代理、事件總線、全局鎖、決策競選、分布式會話等等。它配置簡單,上手快,而且生態(tài)成熟,便于應(yīng)用。但是它對SpringBoot有很強(qiáng)的依賴,需要有一定基礎(chǔ),但是SpringBoot倆小時就可以入門。另外對于“微服務(wù)架構(gòu)” 不了解的話,可以通過搜索引擎搜索“微服務(wù)架構(gòu)”了解下。另外這是SpringCloud的版本為Greenwich.SR2,JDK版本為1.8,SpringBoot的版本為2.1.7.RELEASE。


壹、新建父工程

  • 新建一個Maven父工程lovincloud,便于版本管理,然后刪除src文件夾
  • 添加pom依賴和SpringCloud和SpringBoot的版本
<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.7.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <groupId>com.eelve.lovincloud</groupId>
    <artifactId>lovincloud</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>pom</packaging>

    <name>lovincloud</name>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <spring-cloud.version>Greenwich.SR2</spring-cloud.version>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

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

貳、添加一個注冊中心

在這里,我們需要用的的組件上Spring Cloud Netflix的Eureka ,eureka是一個服務(wù)注冊和發(fā)現(xiàn)模塊。

  • 新建一個子工程lovin-eureka-server作為服務(wù)的注冊中心
<parent>
        <artifactId>lovincloud</artifactId>
        <groupId>com.eelve.lovincloud</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>lovin-eureka-server</artifactId>
    <packaging>jar</packaging>
    <name>eurekaserver</name>
    <version>0.0.1</version>
    <description>eureka服務(wù)端</description>

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

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
  • 然后在啟動類上添加@EnableEurekaServer注解:
package com.eelve.lovin;

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

/**
 * @ClassName LovinEurekaServerApplication
 * @Description TDO
 * @Author zhao.zhilue
 * @Date 2019/8/15 16:20
 * @Version 1.0
 **/
@EnableEurekaServer
@SpringBootApplication
public class LovinEurekaServerApplication {
    public static void main(String[] args) {
        SpringApplication.run(LovinEurekaServerApplication.class,args);
    }
}
  • eureka是一個高可用的組件,它沒有后端緩存,每一個實(shí)例注冊之后需要向注冊中心發(fā)送心跳(因此可以在內(nèi)存中完成),在默認(rèn)情況下erureka server也是一個eureka client ,必須要指定一個 server。eureka server的配置文件appication.yml:
spring:
  application:
    naem: lovineurkaserver  # 服務(wù)模塊名稱
server:
  port: 8881  # 設(shè)置的eureka端口號
eureka:
  instance:
    hostname: localhost   # 設(shè)置eureka的主機(jī)地址
  client:
    registerWithEureka: false  #表示是否將自己注冊到Eureka Server,默認(rèn)為true。由于當(dāng)前應(yīng)用就是Eureka Server,故而設(shè)置為false
    fetchRegistry: false  #表示是否從Eureka Server獲取注冊信息,默認(rèn)為true。因?yàn)檫@是一個單點(diǎn)的Eureka Server,不需要同步其他的Eureka Server節(jié)點(diǎn)的數(shù)據(jù),故而設(shè)置為false
    serviceUrl:
      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/   #Eureka server地址,查詢服務(wù)和注冊服務(wù)都需要依賴這個地址,多個地址可用逗號(英文的)分割

叁、添加一個服務(wù)消費(fèi)端

  • 新建一個子工程lovin-eureka-server作為服務(wù)的注冊中心
<parent>
        <artifactId>lovincloud</artifactId>
        <groupId>com.eelve.lovincloud</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>lovin-eureka-client</artifactId>
    <packaging>jar</packaging>
    <name>eurekaclient</name>
    <version>0.0.1</version>
    <description>eureka的一個消費(fèi)端</description>

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

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
  • 然后在啟動類上添加@EnableEurekaClient注解:
package com.eelve.lovin;

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

/**
 * @ClassName LovinEurekaClientApplication
 * @Description TDO
 * @Author zhao.zhilue
 * @Date 2019/8/15 16:37
 * @Version 1.0
 **/
@SpringBootApplication
@EnableEurekaClient
public class LovinEurekaClientApplication {
    public static void main(String[] args) {
        SpringApplication.run(LovinEurekaClientApplication.class,args);
    }
}
  • 然后我們需要連接到服務(wù)端,具體配置如下
server:
  port: 8801   # 服務(wù)端口號
spring:
  application:
    name: lovineurkaclient     # 服務(wù)名稱
eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:8881/eureka/   # 注冊到的eureka服務(wù)地址
  • 新建一個Controller寫一個測試接口
package com.eelve.lovin.controller;

import com.eelve.lovin.config.ServerConfig;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @ClassName HelloController
 * @Description TDO應(yīng)用默認(rèn)訪問接口
 * @Author zhao.zhilue
 * @Date 2019/8/15 16:45
 * @Version 1.0
 **/
@RestController
public class HelloController {

    @Autowired
    ServerConfig serverConfig;

    @RequestMapping("hello")
    public String hello(){
        return serverConfig.getUrl()+"###"+ HelloController.class.getName();
    }
}

肆、分別啟動注冊中心的服務(wù)端和客戶端

訪問localhost:8881查看結(jié)果


注冊中心

到這里我們可以已經(jīng)看到已經(jīng)成功將客戶端注冊到服務(wù)端了,然后我們訪問測試接口


192202

可以看到已經(jīng)訪問成功,至此Eureka的搭建已經(jīng)完成。

伍、加入安全配置

在互聯(lián)網(wǎng)中我們一般都會考慮安全性,尤其是管理服務(wù)的注冊中心,所以我們可以用spring-boot-starter-security來做安全限制

  • lovin-eureka-server添加spring-boot-starter-security的pom依賴
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-security</artifactId>
</dependency>
  • 修改配置文件
spring:
  application:
    naem: lovineurkaserver  # 服務(wù)模塊名稱
  security:
    basic:
      enabled: true
    user:
      name: lovin
      password: ${REGISTRY_SERVER_PASSWORD:lovin}
server:
  port: 8881  # 設(shè)置的eureka端口號
eureka:
  instance:
    hostname: localhost   # 設(shè)置eureka的主機(jī)地址
    metadata-map:
      user.name: ${security.user.name}
      user.password: ${security.user.password}
  client:
    registerWithEureka: false  #表示是否將自己注冊到Eureka Server,默認(rèn)為true。由于當(dāng)前應(yīng)用就是Eureka Server,故而設(shè)置為false
    fetchRegistry: false  #表示是否從Eureka Server獲取注冊信息,默認(rèn)為true。因?yàn)檫@是一個單點(diǎn)的Eureka Server,不需要同步其他的Eureka Server節(jié)點(diǎn)的數(shù)據(jù),故而設(shè)置為false
    serviceUrl:
      defaultZone: http://${spring.security.user.name}:${spring.security.user.password}@${eureka.instance.hostname}:${server.port}/eureka/   #Eureka server地址,查詢服務(wù)和注冊服務(wù)都需要依賴這個地址,多個地址可用逗號(英文的)分割
  • 添加security配置
package com.eelve.lovin.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;

/**
 * @ClassName SecurityConfig
 * @Description TDO
 * @Author zhao.zhilue
 * @Date 2019/8/16 14:13
 * @Version 1.0
 **/
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.csrf().disable();
        http.authorizeRequests()
                .antMatchers("/css/**").permitAll()
                .anyRequest().authenticated()
                .and()
                .formLogin()
                .and()
                .httpBasic();
        super.configure(http);
    }
}
  • lovin-eureka-client添加spring-boot-starter-security的pom依賴
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-security</artifactId>
</dependency>
  • 修改yaml配置文件
server:
  port: 8801   # 服務(wù)端口號
spring:
  application:
    name: lovineurkaclient     # 服務(wù)名稱
  security:
    basic:
      enabled: true
    user:
      name: lovin
      password: ${REGISTRY_SERVER_PASSWORD:lovin}
eureka:
  client:
    serviceUrl:
      defaultZone: http://lovin:lovin@localhost:8881/eureka/   # 注冊到的eureka服務(wù)地址
  instance:
    leaseRenewalIntervalInSeconds: 10
    health-check-url-path: /actuator/health
    metadata-map:
      user.name: lovin
      user.password: lovin
  • 添加security配置
package com.eelve.lovin.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;

/**
 * @ClassName SecurityConfig
 * @Description TDO
 * @Author zhao.zhilue
 * @Date 2019/8/16 14:13
 * @Version 1.0
 **/
@Configuration
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests().anyRequest().permitAll()
                .and().csrf().disable();
    }
}
  • 另外為了測試多客服端注冊,我們可以修改再給客戶端新建一個配置文件,然后開啟IDEA的多節(jié)點(diǎn)運(yùn)行,如下圖所示勾選Allow parallel run
    192203
  • 然后為了區(qū)分是哪個節(jié)點(diǎn)的請求我們可以添加獲取端口
package com.eelve.lovin.config;

import org.springframework.boot.web.context.WebServerInitializedEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Component;

import java.net.InetAddress;
import java.net.UnknownHostException;

/**
 * @ClassName ServerConfig
 * @Description TDO
 * @Author zhao.zhilue
 * @Date 2019/8/18 12:03
 * @Version 1.0
 **/
@Component
public class ServerConfig  implements ApplicationListener<WebServerInitializedEvent> {
    private int serverPort;

    public String getUrl() {
        InetAddress address = null;
        try {
            address = InetAddress.getLocalHost();
        } catch (UnknownHostException e) {
            e.printStackTrace();
        }
        return "http://"+address.getHostAddress() +":"+this.serverPort;
    }

    @Override
    public void onApplicationEvent(WebServerInitializedEvent event) {
        this.serverPort = event.getWebServer().getPort();
    }

}
  • 然后我們一次重啟服務(wù)端和兩個客戶端,這個時候我們訪問http://localhost:8881/
    192205

    可以看到,這里已經(jīng)讓我們輸入用戶名和密碼了,說明spring-boot-starter-security已經(jīng)配置成功,這時我們輸入配置的用戶名:lovin和密碼:lovin
    192204

    這里我們可以看到已經(jīng)成功了,那么到這里Eureka的配置已經(jīng)全部成功了。
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • 簡介 服務(wù)發(fā)現(xiàn)與治理是微服務(wù)體系結(jié)構(gòu)的重要組成之一,在生產(chǎn)環(huán)境下由于服務(wù)器較多,手動配置很難完成,且一旦變化,如彈...
    wangxiaowu241閱讀 742評論 0 0
  • Eureka簡介 什么是Eureka? Eureka是一種基于rest提供服務(wù)注冊和發(fā)現(xiàn)的產(chǎn)品:Eureka-Se...
    Lc_fly閱讀 369評論 0 1
  • Eureka實(shí)現(xiàn)功能: 注冊中心(應(yīng)用程序之間解耦,包括Provider和Consumer之間的解耦,也包括集群模...
    黃靠譜閱讀 409評論 0 1
  • 在微服務(wù)架構(gòu)中,服務(wù)發(fā)現(xiàn)是最重要的一環(huán)。Spring Cloud提供多個服務(wù)注冊中心作為選擇,如Eureka、Co...
    MrTT閱讀 704評論 0 1
  • 雖然我也知道老師是在利用我?guī)退芾戆嗉?,可是我心甘情愿。也可能是被利益沖昏的頭腦。就連期末的時候還被評上“優(yōu)秀班干...
    陳遠(yuǎn)坤閱讀 196評論 0 0

友情鏈接更多精彩內(nèi)容