真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用Nacos和網(wǎng)關(guān)中心的創(chuàng)建是怎樣的

這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)使用Nacos和網(wǎng)關(guān)中心的創(chuàng)建是怎樣的,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

創(chuàng)新互聯(lián)于2013年成立,先為貴港等服務(wù)建站,貴港等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為貴港企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。


1. Nacos

1.1 簡介

Nacos可以用來發(fā)現(xiàn)、配置和管理微服務(wù)。提供了一組簡單易用的特性集,可以快速實現(xiàn)動態(tài)服務(wù)發(fā)現(xiàn)、服務(wù)配置、服務(wù)元數(shù)據(jù)及流量管理。

Nacos用來更敏捷和容易地構(gòu)建、交付和管理微服務(wù)平臺。Nacos是構(gòu)建以”服務(wù)“為中心的現(xiàn)代應(yīng)用構(gòu)架(例如微服務(wù)范式、云原生范式)的服務(wù)基礎(chǔ)設(shè)置。

也就是通常我們所說的配置中心和服務(wù)發(fā)現(xiàn)中心。

使用Nacos和網(wǎng)關(guān)中心的創(chuàng)建是怎樣的

 

1.2 搭建和啟動

Nacos目前版本不支持以Spring boot的形式創(chuàng)建服務(wù),必須以一個Java包的形式單獨運行或者以Docker服務(wù)的形式運行,我們大概講解一下本地運行。

下載安裝包:

curl https://github.com/alibaba/nacos/releases/download/1.2.1/nacos-server-1.2.1.zip
unzip nacos-server-$version.zip 或者 tar -xvf nacos-server-$version.tar.gz
cd nacos/bin
 

使用源碼安裝:

git clone https://github.com/alibaba/nacos.git
cd nacos/
mvn -Prelease-nacos -Dmaven.test.skip=true clean install -U
ls -al distribution/target/

// change the $version to your actual path
cd distribution/target/nacos-server-$version/nacos/bin
 

啟動:

Linux/Unix/Mac

啟動命令(standalone代表著單機(jī)模式運行,非集群模式):

sh startup.sh -m standalone
 

如果您使用的是ubuntu系統(tǒng),或者運行腳本報錯提示[[符號找不到,可嘗試如下運行:

bash startup.sh -m standalone
 

Windows

啟動命令:

cmd startup.cmd
 

或者雙擊startup.cmd運行文件。

 

2. Spring Cloud Gateway

整個的網(wǎng)關(guān)服務(wù),我們采用的Spring Cloud Gateway。在Spring Cloud微服務(wù)里,整個系統(tǒng)只對外公開了網(wǎng)關(guān),其他的服務(wù)是對外不可見的。所以需要設(shè)置一個讓我們可以用的網(wǎng)關(guān)服務(wù)。

在 nature/manager下創(chuàng)建一個gateway目錄,并添加pom.xml:


        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">
   
       club.attachie
       manager
       ${revision}
   


   4.0.0
   club.attachie
   gateway
   jar
   ${revision}


 

在manager下注冊該模塊:


   gateway

   

2.1 添加 Gateway

創(chuàng)建完成項目后,需要添加依賴包:



   org.springframework.cloud
   spring-cloud-starter-gateway

 

在gateway項目中,創(chuàng)建如下目錄:

├── pom.xml
└── src
   └── main
       ├── java
       │   └── club
       │       └── attachie
       │           └── gateway
       │               └── SpringGatewayApplication.java
       └── resources
           └── bootstrap.yml
 

創(chuàng)建 SpringGateAppliction.java文件,代碼如下:

package club.attachie.gateway;


import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.context.config.annotation.RefreshScope;

/**
* @author attaching
*/
@SpringBootApplication
@EnableDiscoveryClient
@RefreshScope
public class SpringGatewayApplication {
   public static void main(String[] args) {
       SpringApplication.run(SpringGatewayApplication.class, args);
   }
}
 

在resource目錄下創(chuàng)建 bootstrap.yml:

spring:
 application:
   name: gateway
 

yml 是Spring 的一種配置文件格式,其中名稱有application和bootstrap,bootstrap比application先加載。

 

2.2 添加 nacos

先在 nature/pom.xml 添加 nacos 版本號:

2.2.1.RELEASE
 

然后在dependencyManagement > dependencies 下添加 nacos相關(guān)依賴管理:


   com.alibaba.cloud
   spring-cloud-starter-alibaba-nacos-discovery
   ${nacos.version}


   com.alibaba.cloud
   spring-cloud-alibaba-starters
   ${nacos.version}

 

在Gateway項目中pom.xml 添加:


   com.alibaba.cloud
   spring-cloud-starter-alibaba-nacos-discovery


   com.alibaba.cloud
   spring-cloud-starter-alibaba-nacos-discovery

 

然后回過頭來,在bootstrap里設(shè)置:

spring:
 application:
   name: gateway

 cloud:
   nacos:
     config:
       server-addr: 127.0.0.1:8848

上述就是小編為大家分享的使用Nacos和網(wǎng)關(guān)中心的創(chuàng)建是怎樣的了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


網(wǎng)頁標(biāo)題:使用Nacos和網(wǎng)關(guān)中心的創(chuàng)建是怎樣的
鏈接地址:http://weahome.cn/article/ihcjch.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部