91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

使用Nacos和網關中心的創建是怎樣的

發布時間:2021-12-02 17:10:23 來源:億速云 閱讀:195 作者:柒染 欄目:大數據

這期內容當中小編將會給大家帶來有關使用Nacos和網關中心的創建是怎樣的,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。


1. Nacos

1.1 簡介

Nacos可以用來發現、配置和管理微服務。提供了一組簡單易用的特性集,可以快速實現動態服務發現、服務配置、服務元數據及流量管理。

Nacos用來更敏捷和容易地構建、交付和管理微服務平臺。Nacos是構建以”服務“為中心的現代應用構架(例如微服務范式、云原生范式)的服務基礎設置。

也就是通常我們所說的配置中心和服務發現中心。

使用Nacos和網關中心的創建是怎樣的

 

1.2 搭建和啟動

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

下載安裝包:

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代表著單機模式運行,非集群模式):

sh startup.sh -m standalone
 

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

bash startup.sh -m standalone
 

Windows

啟動命令:

cmd startup.cmd
 

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

 

2. Spring Cloud Gateway

整個的網關服務,我們采用的Spring Cloud Gateway。在Spring Cloud微服務里,整個系統只對外公開了網關,其他的服務是對外不可見的。所以需要設置一個讓我們可以用的網關服務。

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

<?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>
       <groupId>club.attachie</groupId>
       <artifactId>manager</artifactId>
       <version>${revision}</version>
   </parent>

   <modelVersion>4.0.0</modelVersion>
   <groupId>club.attachie</groupId>
   <artifactId>gateway</artifactId>
   <packaging>jar</packaging>
   <version>${revision}</version>

</project>
 

在manager下注冊該模塊:

<modules>
   <module>gateway</module>
</modules>
   

2.1 添加 Gateway

創建完成項目后,需要添加依賴包:

<!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-gateway -->
<dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
 

在gateway項目中,創建如下目錄:

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

創建 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目錄下創建 bootstrap.yml:

spring:
 application:
   name: gateway
 

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

 

2.2 添加 nacos

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

<nacos.version>2.2.1.RELEASE</nacos.version>
 

然后在dependencyManagement > dependencies 下添加 nacos相關依賴管理:

<dependency>
   <groupId>com.alibaba.cloud</groupId>
   <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
   <version>${nacos.version}</version>
</dependency>
<dependency>
   <groupId>com.alibaba.cloud</groupId>
   <artifactId>spring-cloud-alibaba-starters</artifactId>
   <version>${nacos.version}</version>
</dependency>
 

在Gateway項目中pom.xml 添加:

<dependency>
   <groupId>com.alibaba.cloud</groupId>
   <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<dependency>
   <groupId>com.alibaba.cloud</groupId>
   <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
 

然后回過頭來,在bootstrap里設置:

spring:
 application:
   name: gateway

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

上述就是小編為大家分享的使用Nacos和網關中心的創建是怎樣的了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

卢湾区| 电白县| 手机| 遵义市| 平顶山市| 舞钢市| 盐山县| 宁陵县| 宣武区| 阆中市| 澜沧| 汪清县| 彝良县| 荣成市| 双柏县| 湟源县| 保德县| 阿城市| 遂昌县| 永康市| 敦化市| 凉城县| 三都| 吴忠市| 霍城县| 曲水县| 四会市| 肇州县| 雅江县| 肇东市| 怀仁县| 禄劝| 乡城县| 蓬莱市| 榆社县| 曲水县| 涡阳县| 宜州市| 梨树县| 襄城县| 江津市|