溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么把非springboot項目集成eureka

發(fā)布時間:2021-11-16 14:29:24 來源:億速云 閱讀:192 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要介紹“怎么把非springboot項目集成eureka”,在日常操作中,相信很多人在怎么把非springboot項目集成eureka問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么把非springboot項目集成eureka”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

1  背景

隨著SOA架構(gòu)的演進(jìn),越來越多的服務(wù)商需要提供一種通用的可以動態(tài)伸縮的基礎(chǔ)架構(gòu),

而對嘻「」來說,亦是如此。并且隨著TPS的不斷增加,more and more endpoint 需要整合這種分布式基礎(chǔ)架構(gòu)。這里有點(diǎn)類似當(dāng)年google的Bigtable 的論文剛發(fā)表時的案例,對不同業(yè)務(wù),或者相同業(yè)務(wù)不同功能,在或者相同功能實(shí)現(xiàn)節(jié)點(diǎn)拓展,分布式處理。(要實(shí)現(xiàn)分布式處理能力的系統(tǒng)必然伴隨這分布式場景的一些問題,這里不做討論。

2 目的說明

類似Dubbo分布式服務(wù)治理,不同的微服務(wù)需要依賴注冊中心做服務(wù)治理與管控,springCloud 也是這樣,作為微服務(wù)的生態(tài),不同的組件負(fù)責(zé)不同的功能(例如archaius 做配置and eureka 做服務(wù)PUBSUB等...)。

3 方案對比

3.1 directly to register

簡單的說.通過分析源碼發(fā)現(xiàn)DiscoveryClient對象是客戶端啟動加載的核心類,

怎么把非springboot項目集成eureka

它創(chuàng)建的時候就會去注冊,如下

怎么把非springboot項目集成eureka

在restemplate 調(diào)用的過程中需要先通過應(yīng)用層通信拿到服務(wù)器對應(yīng)spring.application.name 為vipaddress的InstanceInfo,instanceOf里面維護(hù)了對應(yīng)的你將要調(diào)用的服務(wù)器或者服務(wù)如下:

怎么把非springboot項目集成eureka

可能會在這里拿不出來實(shí)例信息,最后報沒有對應(yīng)服務(wù)實(shí)例,以上來自Applications Class,

源碼后文會詳細(xì)分析,這里不過多分析只解決問題

******  4.2  The Error for Register Process******

這里按照官網(wǎng)案例搭建注冊環(huán)境,可能會出現(xiàn)一切準(zhǔn)備就緒然注冊不上去的情況。

走一遍注冊流程如下:

怎么把非springboot項目集成eureka 怎么把非springboot項目集成eureka

怎么把非springboot項目集成eureka

Archaius會默認(rèn)加載classpath下的config.properties文件作為當(dāng)前內(nèi)存資源配置,也可以改,通過archaius.configurationSource.defaultFileName,當(dāng)然既然是動態(tài)的肯定也是可以做多數(shù)據(jù)源動態(tài)處理,具體不詳細(xì)說明了

具體配置意義先不考慮,先為了解決問題考慮環(huán)境

******    4.3  eureka/apps for configuration******

手動注冊這一截是沒有的 顯示empty

所以我們需要把這一截加上去,

代碼如下:

int port = instanceInfo.getPort();
Map<String, String> maps = Maps.newHashMap();
maps.put("management.port", String.valueOf(port));
//activity-manager:dev-10.0.2.17:8010

applicationInfoManager.getInstance().registerAppMetadata(maps);

還有一個細(xì)節(jié)問題:

Archaius1Utils.initConfig("eureka-client");

這個是在查看報錯日志的時候報的,為了更好的兼容框架需要解決,大概意思是說缺少這個配置 怎么把非springboot項目集成eureka

在加載此類實(shí)現(xiàn)類的時候就會一起初始化該類。很明顯組件已經(jīng)幫我們做了,我們只需要提供對應(yīng)配置文件即可 怎么把非springboot項目集成eureka

依賴為

怎么把非springboot項目集成eureka

怎么把非springboot項目集成eureka

這里需要注意的兩點(diǎn):

怎么把非springboot項目集成eureka 怎么把非springboot項目集成eureka

怎么把非springboot項目集成eureka

繼續(xù)DEBUG會看到:

怎么把非springboot項目集成eureka

這里開始遞歸調(diào)用攔截器,也就是我們在啟動時候放進(jìn)去的攔截器會在這里調(diào)用

怎么把非springboot項目集成eureka

當(dāng)然這里有個細(xì)節(jié)

怎么把非springboot項目集成eureka

這里我們需要關(guān)注兩個點(diǎn)

1 通過服務(wù)serviceId拿到核心instanceInfo ,下面會解釋

2 通過對應(yīng)服務(wù)信息選擇對應(yīng)服務(wù)調(diào)用

分別對應(yīng)第一二行代碼

繼續(xù)debug

怎么把非springboot項目集成eureka

這里需要通過一個serviceId加載一個LloadBalancer,代碼如下 怎么把非springboot項目集成eureka

Spring 默認(rèn)會調(diào)用以上工廠加載,所以我們點(diǎn)進(jìn)去會看到 怎么把非springboot項目集成eureka

這里也需要注意兩點(diǎn):

1 我們這個lloadbalancer是用的時候才去加載,換句話說懶加載

2 這里有個緩存的 操作 第一個if為false就會返回緩存,換句話說只會創(chuàng)建一次

然后我們進(jìn)去

怎么把非springboot項目集成eureka

這些東西。

怎么把非springboot項目集成eureka

怎么把非springboot項目集成eureka

以上的clientConfig 就是我們在代碼設(shè)置進(jìn)去的EurekaClientConfigBean

現(xiàn)在還沒有上面參數(shù),不要緊因?yàn)檫€沒有開始初始化。

繼續(xù)加載完之后開始加載

怎么把非springboot項目集成eureka

圖大概意思就是先加載父類baseLoadbalancer然后加載自己

restOfInit方法就是核心加載方法

怎么把非springboot項目集成eureka

上圖標(biāo)紅的是比較重要的方法

怎么把非springboot項目集成eureka

這里比較重點(diǎn)的如上標(biāo)紅處

進(jìn)去看到:

怎么把非springboot項目集成eureka 怎么把非springboot項目集成eureka 怎么把非springboot項目集成eureka

他就會走到這里,這是什么呢?

怎么把非springboot項目集成eureka

對應(yīng)一下會從visualHostNameAppMap 里面通過vipAddress那到List<InstanceOf>,成功拿到instanceInfo之后回到剛開始進(jìn)源碼的地方就會返回一個包含對應(yīng)instanceInfo的loadBalancer,

怎么把非springboot項目集成eureka 怎么把非springboot項目集成eureka

總結(jié)一下:

負(fù)載均衡實(shí)現(xiàn)原理概述為根據(jù)配置加載負(fù)載均衡攔截器,用戶客戶端調(diào)用遍歷處理,通過servceId通過HTTP拿到對應(yīng)instanceInfo(和dubbo流程差不多,第一次都需要去拿之后緩存在本地。默認(rèn)90秒把重新調(diào)用一次拉取信息)多個需要依算法選取一個然后進(jìn)行遠(yuǎn)程調(diào)用。

代碼如下:

package com.kili.lipapay.nmc.common;

import com.google.common.collect.Maps;
import com.netflix.appinfo.ApplicationInfoManager;
import com.netflix.appinfo.InstanceInfo;
import com.netflix.appinfo.providers.EurekaConfigBasedInstanceInfoProvider;
import com.netflix.config.ConfigurationManager;
import com.netflix.config.DynamicPropertyFactory;
import com.netflix.discovery.DefaultEurekaClientConfig;
import com.netflix.discovery.DiscoveryClient;
import com.netflix.discovery.DiscoveryManager;
import com.netflix.discovery.EurekaClient;
import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
import java.io.*;
import java.net.InetAddress;
import java.net.Socket;
import java.util.Date;
import java.util.Map;
import java.util.Properties;


@Component
class SimpleEurakeService {
    private static final DynamicPropertyFactory configInstance = com.netflix.config.DynamicPropertyFactory
            .getInstance();

    public void registerWithEureka() throws IOException {

        ApplicationInfoManager applicationInfoManager = null;
        EurakeInstanceConfig config = null;
        InstanceInfo instanceInfo = null;
        // Register with Eureka
        if (applicationInfoManager == null) {
            config = new EurakeInstanceConfig();
            instanceInfo = new EurekaConfigBasedInstanceInfoProvider(config).get();
            applicationInfoManager = new ApplicationInfoManager(config, instanceInfo);

        }
       // Archaius1Utils.initConfig("eureka-client");
        Properties properties = new Properties();
        InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("config.properties");
        properties.load(inputStream);
        properties.setProperty("eureka.ipAddr", InetAddress.getLocalHost().getHostAddress());
        String instanceId = applicationInfoManager.getInfo().getAppName() + ":dev-" + properties.getProperty("eureka.ipAddr") + ":" + properties.getProperty("eureka.port");
        properties.setProperty("eureka.instanceId", instanceId);
        ConfigurationManager.loadProperties(properties);
        int port = instanceInfo.getPort();
        Map<String, String> maps = Maps.newHashMap();
        maps.put("management.port", String.valueOf(port));
        //activity-manager:dev-10.0.2.17:8010
        applicationInfoManager.getInstance().registerAppMetadata(maps);
        applicationInfoManager.getInstance().setInstanceStatus(
                InstanceInfo.InstanceStatus.UP);
        EurekaClient eurekaClient = new DiscoveryClient(applicationInfoManager, new DefaultEurekaClientConfig());
        String vipAddress = configInstance.getStringProperty(
                "eureka.vipAddress", "unknown").get();
        InstanceInfo nextServerInfo = null;
        while (nextServerInfo == null) {

            try {
                nextServerInfo = eurekaClient
                        .getNextServerFromEureka(vipAddress, false);
            } catch (Throwable e) {
                System.out
                        .println("Waiting for service to register with eureka..");
                try {
                    Thread.sleep(10000);
                } catch (InterruptedException e1) {
                    // TODO Auto-generated catch block
                    e1.printStackTrace();
                }
            }
        }
    }


    public void unRegisterWithEureka() {
        // Un register from eureka.
        DiscoveryManager.getInstance().shutdownComponent();
    }


    private void processRequest(final Socket s) {
        try {
            BufferedReader rd = new BufferedReader(new InputStreamReader(
                    s.getInputStream()));
            String line = rd.readLine();
            if (line != null) {
                System.out.println("Received the request from the client.");
            }
            PrintStream out = new PrintStream(s.getOutputStream());
            System.out.println("Sending the response to the client...");
            out.println("Reponse at " + new Date());
        } catch (Throwable e) {
            System.err.println("Error processing requests");
        } finally {
            if (s != null) {
                try {
                    s.close();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        }
    }

    @PostConstruct
    private void init() throws IOException {
        SimpleEurakeService sampleEurekaService = new SimpleEurakeService();
        sampleEurekaService.registerWithEureka();
    }

配置如下:

# note that for a purely client usage (e.g. only used to get information about other services,
# there is no need for registration. This property applies to the singleton DiscoveryClient so
# if you run a server that is both a service provider and also a service consumer,
# then don't set this property to false.
#eureka.shouldEnforceRegistrationAtInit=false
## configuration related to reaching the eureka serversSS
eureka.client.service-url.defaultZone=http://localhost:7025/eureka
eureka.serviceUrl.default=http://localhost:7025/eureka
spring.cloud.config.discovery.enabled=true
spring.cloud.config.discovery.service-id=config-server
eureka.region=default
spring.application.name=sampleservice

#Name of the application to be identified by other services

eureka.name=sampleservice


#Virtual host name by which the clients identifies this service
eureka.vipAddress=sampleservice

#The port where the service will be running and serving requests
eureka.port=8080

#For eureka clients running in eureka server, it needs to connect to servers in other zones
eureka.preferSameZone=false

#Change this if you want to use a DNS based lookup for determining other eureka servers. For example
#of specifying the DNS entries, check the eureka-client-test.properties, eureka-client-prod.properties
eureka.shouldUseDns=false

eureka.us-east-1.availabilityZones=default
erueka.registration.enabled=true

到此,關(guān)于“怎么把非springboot項目集成eureka”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI