記錄一: Spring Cloud Alibaba 2021.X 搭建

来源:https://www.cnblogs.com/zy115/archive/2023/04/02/17280044.html
-Advertisement-
Play Games

一 》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》 下載nacos https://github.com/alibaba/nacos nacos-server-2.0.3.zip Windows 版 解壓後,資料庫新建nacos庫,將 X:\nacos\ ...


一   》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》

下載nacos    https://github.com/alibaba/nacos      nacos-server-2.0.3.zip   Windows 版 

解壓後,資料庫新建nacos庫,將 X:\nacos\conf 目錄下的 nacos-mysql.sql 文件執行 導入數據表與數據

修改文件 X:\nacos\conf 目錄下 application.properties 

複製代碼
 1 #*************** Config Module Related Configurations ***************#
 2 ### If use MySQL as datasource:
 3 spring.datasource.platform=mysql
 4 
 5 ### Count of DB:
 6 db.num=1
 7 
 8 ### Connect URL of DB:
 9 db.url.0=jdbc:mysql://127.0.0.1:3306/nacos?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC
10 db.user.0=root
11 db.password.0=Root!234
複製代碼

修改文件 X:\nacos\bin 目錄下的 startup.cmd  標紅部分 為單機模式

複製代碼
set BASE_DIR="%BASE_DIR:~0,-5%"

set CUSTOM_SEARCH_LOCATIONS=file:%BASE_DIR%/conf/

set MODE="standalone"   rem “cluster”
set FUNCTION_MODE="all"
set SERVER=nacos-server
set MODE_INDEX=-1
set FUNCTION_MODE_INDEX=-1
set SERVER_INDEX=-1
set EMBEDDED_STORAGE_INDEX=-1
set EMBEDDED_STORAGE=""
複製代碼

雙擊啟動 startup.cmd  第一行顯示   "nacos is starting with standalone"  為單機模式

複製代碼
"nacos is starting with standalone"

         ,--.
       ,--.'|
   ,--,:  : |                                           Nacos 2.0.3
,`--.'`|  ' :                       ,---.               Running in stand alone mode, All function modules
|   :  :  | |                      '   ,'\   .--.--.    Port: 8848
:   |   \ | :  ,--.--.     ,---.  /   /   | /  /    '   Pid: 7892
|   : '  '; | /       \   /     \.   ; ,. :|  :  /`./   Console: http://127.0.0.1:8848/nacos/index.html
'   ' ;.    ;.--.  .-. | /    / ''   | |: :|  :  ;_
|   | | \   | \__\/: . ..    ' / '   | .; : \  \    `.      https://nacos.io
'   : |  ; .' ," .--.; |'   ; :__|   :    |  `----.   \
|   | '`--'  /  /  ,.  |'   | '.'|\   \  /  /  /`--'  /
'   : |     ;  :   .'   \   :    : `----'  '--'.     /
;   |.'     |  ,     .-./\   \  /            `--'---'
'---'        `--`---'     `----'

2023-04-02 08:56:24,132 INFO Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@2392212b' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

2023-04-02 08:56:24,138 INFO Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

2023-04-02 08:56:24,746 INFO Tomcat initialized with port(s): 8848 (http)

2023-04-02 08:56:25,248 INFO Root WebApplicationContext: initialization completed in 7616 ms

2023-04-02 08:56:30,342 INFO Initializing ExecutorService 'applicationTaskExecutor'

2023-04-02 08:56:30,512 INFO Adding welcome page: class path resource [static/index.html]

2023-04-02 08:56:31,244 INFO Creating filter chain: Ant [pattern='/**'], []

2023-04-02 08:56:31,299 INFO Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@29f85fe1, org.springframework.security.web.context.SecurityContextPersistenceFilter@73d3e555, org.springframework.security.web.header.HeaderWriterFilter@bbf9e07, org.springframework.security.web.csrf.CsrfFilter@2af46afd, org.springframework.security.web.authentication.logout.LogoutFilter@3a08078c, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@44924587, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4487c0c2, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@43a0a32d, org.springframework.security.web.session.SessionManagementFilter@2b289ac9, org.springframework.security.web.access.ExceptionTranslationFilter@31ceba99]

2023-04-02 08:56:31,483 INFO Initializing ExecutorService 'taskScheduler'

2023-04-02 08:56:31,501 INFO Exposing 16 endpoint(s) beneath base path '/actuator'

2023-04-02 08:56:31,638 INFO Tomcat started on port(s): 8848 (http) with context path '/nacos'

2023-04-02 08:56:31,641 INFO Nacos started successfully in stand alone mode. use external storage

2023-04-02 08:56:45,175 INFO Initializing Servlet 'dispatcherServlet'

2023-04-02 08:56:45,189 INFO Completed initialization in 13 ms
複製代碼

 

 

訪問 http://localhost:8848/nacos/index.html    賬號密碼為 nacos   

 

二  》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》

 1.idea新建springboot項目《cloud》,保留  .idea    pom.xml   兩個 ,其餘全部刪除。

  修改pom.xml 文件   註意jdk版本對應springboot版本,springboot版本對應的springcloud版本 

  • 2022.x 分支對應的是 Spring Cloud 2022 與 Spring Boot 3.0.x,最低支持 JDK 17。
  • 2021.x 分支對應的是 Spring Cloud 2021 與 Spring Boot 2.6.x,最低支持 JDK 1.8。
  • 2020.0 分支對應的是 Spring Cloud 2020 與 Spring Boot 2.4.x,最低支持 JDK 1.8。
  • 2.2.x 分支對應的是 Spring Cloud Hoxton 與 Spring Boot 2.2.x,最低支持 JDK 1.8。
  • greenwich 分支對應的是 Spring Cloud Greenwich 與 Spring Boot 2.1.x,最低支持 JDK 1.8。
  • finchley 分支對應的是 Spring Cloud Finchley 與 Spring Boot 2.0.x,最低支持 JDK 1.8。
  • 1.x 分支對應的是 Spring Cloud Edgware 與 Spring Boot 1.x,最低支持 JDK 1.7。
複製代碼
 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 4     <modelVersion>4.0.0</modelVersion>
 5     <parent>
 6         <groupId>org.springframework.boot</groupId>
 7         <artifactId>spring-boot-starter-parent</artifactId>
 8         <version>2.6.10</version>
 9         <relativePath/> <!-- lookup parent from repository -->
10     </parent>
11     <groupId>com.example</groupId>
12     <artifactId>cloud</artifactId>
13     <version>0.0.1-SNAPSHOT</version>
14     <name>cloud</name>
15     <description>cloud</description>
16 
17     <packaging>pom</packaging>
18 
19     <properties>
20         <java.version>1.8</java.version>
21         <spring-cloud-alibaba-dependencies-version>2021.0.5.0</spring-cloud-alibaba-dependencies-version>
22     </properties>
23 
24     <dependencies>
25         <dependency>
26             <groupId>org.springframework.boot</groupId>
27             <artifactId>spring-boot-starter</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.springframework.boot</groupId>
31             <artifactId>spring-boot-starter-web</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.springframework.boot</groupId>
35             <artifactId>spring-boot-starter-test</artifactId>
36             <scope>test</scope>
37             <exclusions>
38                 <exclusion>
39                     <groupId>org.junit.vintage</groupId>
40                     <artifactId>junit-vintage-engine</artifactId>
41                 </exclusion>
42             </exclusions>
43         </dependency>
44     </dependencies>
45 
46     <build>
47         <plugins>
48             <plugin>
49                 <groupId>org.springframework.boot</groupId>
50                 <artifactId>spring-boot-maven-plugin</artifactId>
51             </plugin>
52         </plugins>
53     </build>
54 
55     <dependencyManagement>
56         <dependencies>
57             <dependency>
58                 <groupId>com.alibaba.cloud</groupId>
59                 <artifactId>spring-cloud-alibaba-dependencies</artifactId>
60                 <version>${spring-cloud-alibaba-dependencies-version}</version>
61                 <type>pom</type>
62                 <scope>import</scope>
63             </dependency>
64         </dependencies>
65     </dependencyManagement>
66 </project>
複製代碼

 

   2.新建在cloud項目下 新建 maven model 《provider》  註意是maven項目 

    修改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">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.example</groupId>
        <artifactId>cloud</artifactId>
        <version>0.0.1-SNAPSHOT</version>
    </parent>

    <groupId>cn.com.provider</groupId>
    <artifactId>provider</artifactId>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
        </dependency>
    </dependencies>
</project>
複製代碼

  新建 java項目目錄與application啟動類

 

application.yam文件內容如下

複製代碼
server:
  port: 8001
spring:
  application:
    name: provider
  cloud:
    nacos:
      discovery:
        server-addr: 127.0.0.1:8848
複製代碼

ProviderApplication.class 文件內容如下 (註意標紅部分)

複製代碼
package cn.com.provider;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;

@SpringBootApplication
@EnableDiscoveryClient
public class ProviderApplication {

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

}
複製代碼

創建一個TestController.class  (ResultUtil.result()我自己創建的返回封裝,不重要,寫個字元串就“provider success” 就好!)

複製代碼
package cn.com.provider.controller;

import cn.com.kity.common.result.ResultUtil;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping(value = "/test")
public class TestController {

    @GetMapping(value = "/test01")
    public Object eg01(){
    //provider success return ResultUtil.result(); } }
複製代碼

啟動provider 訪問 localhost:8001/test/test01  返回    provider success

nacos服務管理下服務列表出現provider服務

  3.同上創建consumer服務【maven項目】  consumer服務需要調用provider服務 則使用Feign交互

目錄結構為:

 

 

pom.xml如下: 多了三個    openfeign;  loadbalancer;  sentinel;

複製代碼
 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <project xmlns="http://maven.apache.org/POM/4.0.0"
 3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 5     <modelVersion>4.0.0</modelVersion>
 6     <parent>
 7         <groupId>com.example</groupId>
 8         <artifactId>cloud</artifactId>
 9         <version>0.0.1-SNAPSHOT</version>
10     </parent>
11 
12     <artifactId>consumer</artifactId>
13 
14     <properties>
15         <maven.compiler.source>8</maven.compiler.source>
16         <maven.compiler.target>8</maven.compiler.target>
17         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18     </properties>
19     <dependencies>
20         <dependency>
21             <groupId>com.alibaba.cloud</groupId>
22             <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
23         </dependency>
24         <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-openfeign -->
25         <dependency>
26             <groupId>org.springframework.cloud</groupId>
27             <artifactId>spring-cloud-starter-openfeign</artifactId>
28             <version>3.1.6</version>
29         </dependency>
30         <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-loadbalancer -->
31         <dependency>
32             <groupId>org.springframework.cloud</groupId>
33             <artifactId>spring-cloud-loadbalancer</artifactId>
34             <version>3.1.6</version>
35         </dependency>
36         <!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-sentinel -->
37         <dependency>
38             <groupId>com.alibaba.cloud</groupId>
39             <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
40             <exclusions> <!--除去該依賴,controller返回的結果才是json,不去除就xml-->
41                 <exclusion>
42                 <groupId>com.fasterxml.jackson.dataformat</groupId>
43                     <artifactId>jackson-dataformat-xml</artifactId>
44                 </exclusion>
45             </exclusions>
46         </dependency>
47     </dependencies>
48 </project>
複製代碼

application.yml內容如下:

複製代碼
 1 server:
 2   port: 8002
 3 spring:
 4   application:
 5     name: consumer
 6   cloud:
 7     nacos:
 8       discovery:
 9         server-addr: 127.0.0.1:8848
10 feign:
11   sentinel:
12     enabled: true #開啟feign對sentinel的支持 服務降級
複製代碼

 

創建ConsumerApplication.class 內容如下:【註意標紅部分】

複製代碼
package cn.com.consumer;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.openfeign.EnableFeignClients;

@SpringBootApplication
@EnableFeignClients
@EnableDiscoveryClient
public class ConsumerApplication {
    public static void main(String[] args) {
        SpringApplication.run(ConsumerApplication.class, args);
    }

}
複製代碼

創建FeignFallBack.class 內容如下:

複製代碼
package cn.com.consumer.feign;



import org.springframework.cloud.openfeign.FallbackFactory;
import org.springframework.stereotype.Component;

@Component
public class FeignFallBack implements FallbackFactory<ConsumerFeignToProvider> {
    @Override
    public ConsumerFeignToProvider create(Throwable cause) {
        return () -> "provider 服務提供者掛了!!!!!!";
    }
}
複製代碼

 

創建ConsumerFeignToProvider.class內容如下:

標紅地方為provider服務名稱,

application.yml中

spring:
  application:
    name: provider
複製代碼
package cn.com.consumer.feign;


import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;

@FeignClient(name = "provider",fallbackFactory = FeignFallBack.class)
public interface ConsumerFeignToProvider {

    @GetMapping("/test/test01")
    String test01();

}
複製代碼

 

創建TestController.class內容如下

複製代碼
 1 package cn.com.consumer.controller;
 2 
 3 import cn.com.consumer.feign.ConsumerFeignToProvider;
 4 import org.springframework.web.bind.annotation.GetMapping;
 5 import org.springframework.web.bind.annotation.RequestMapping;
 6 import org.springframework.web.bind.annotation.RestController;
 7 
 8 import javax.annotation.Resource;
 9 
10 @RestController
11 @RequestMapping(value = "/consumer")
12 public class TestController {
13 
14     @Resource
15     ConsumerFeignToProvider cftp;
16 
17     @GetMapping(value = "/eg01")
18     public Object eg01(){
19         return "consumer01 掉用 ===" + cftp.test01() ;
20     }
21 
22 }
複製代碼

啟動consumer服務:

nacos服務管理下服務列表出現consumer服務

訪問http://localhost:8002/consumer/eg01 返回

consumer01 掉用 ===provider success

停止provider服務  訪問http://localhost:8002/consumer/eg01 返回

consumer01 掉用 ===provider 服務提供者掛了!!!!!!

 

====================================================結束===================================================gateway+++conifg======================================================


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • “林子雨大數據” 實驗3 HBase操作與介面編程 環境搭建 VM虛擬機和Ubuntu系統的安裝 在Windows中使用VirtualBox安裝Ubuntu虛擬機(2020年7月版本)_廈大資料庫實驗室博客 (xmu.edu.cn) Hadoop安裝(偽分散式) Hadoop3.1.3安裝教程_單機 ...
  • 準備一些操作(Action)? 到目前為止,我們主要通過聲明欄位和視圖來構建模塊。在任何真實的業務場景中,我們都希望將一些業務邏輯鏈接到操作按鈕。在我們的房地產示例中,我們希望能夠: 取消或將房產設置為已售出 接受或拒絕報價 有人可能會說,我們已經可以通過手動更改狀態來完成這些事情,但這並不太方便。 ...
  • 3 月的碎碎念,大致總結了商業人生、付費軟體、創業方向選擇、創業感性還是理性、如何解決複雜問題及如何成長這幾個方面的內容。 商業人生 商業人生需要試錯能力和快速信息收集與驗證校準; 商業邏輯需要試錯能力,收集各種渠道信息後整理決策。快速信息收集和驗證校準很重要。 付費軟體 付費軟體產品可以依托大平臺 ...
  • 概述 背景 函數式編程的理論基礎是阿隆佐·丘奇(Alonzo Church)於 1930 年代提出的 λ 演算(Lambda Calculus)。λ 演算是一種形式系統,用於研究函數定義、函數應用和遞歸。它為計算理論和電腦科學的發展奠定了基礎。隨著 Haskell(1990年)和 Erlang(1 ...
  • 一門語言教程被搜索的次數越多,大家就會認為該語言越受歡迎。這是一個領先指標。原始數據來自谷歌Trends 如果您相信集體智慧,那麼流行編程語言排名可以幫助您決定學習哪門語言,或者在一個新的軟體項目中使用哪一門語言 ...
  • 請編寫一個程式,使用兩個線程分別輸出數字和字母,要求輸出的結果為:1A2B3C4D5E6F7G8H9I10J。 提示:可以使用Java中的wait()和notify()方法來實現線程間的通信。 public class NumberLetterPrinter { // 定義一個靜態的鎖對象 priv ...
  • 原文鏈接: Go 語言數組和切片的區別 在 Go 語言中,數組和切片看起來很像,但其實它們又有很多的不同之處,這篇文章就來說說它們到底有哪些不同。 另外,這個問題在面試中也經常會被問到,屬於入門級題目,看過文章之後,相信你會有一個很好的答案。 數組 數組是同一種數據類型元素的集合,數組在定義時需要指 ...
  • 流程式控制制 選擇結構(分支語句) ​ 因為switch只能匹配固定值,推薦使用if-else做條件篩選 if-else判斷 package main import "fmt" func main() { var tmpA int fmt.Scanln(&tmpA) if tmpA >= 90 { fm ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...