SpringCloud微服務實戰:一、Eureka註冊中心服務端

来源:https://www.cnblogs.com/CodeKjm/archive/2019/02/12/10367326.html
-Advertisement-
Play Games

1.項目啟動類application.java類名上增加@EnableEurekaServer註解,聲明是註冊中心 1 import org.springframework.boot.SpringApplication; 2 import org.springframework.boot.autoc ...


1.項目啟動類application.java類名上增加@EnableEurekaServer註解,聲明是註冊中心
 1 import org.springframework.boot.SpringApplication;
 2 import org.springframework.boot.autoconfigure.SpringBootApplication;
 3 import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
 4 @SpringBootApplication
 5 @EnableEurekaServer
 6 public class EurekaApplication {
 7  public static void main(String[] args) {
 8  SpringApplication.run(EurekaApplication.class, args);
 9  }
10 }
2.application.yml配置:
 1 #配置註冊中心服務端信息
 2  eureka:
 3  client:
 4  service-url:
 5  defaultZone: http://localhost:8762/eureka/
 6  #配置是否顯示在註冊中心上
 7  register-with-eureka: false
 8  #自我保護機制,開發環境可以關閉,生產環境必須開啟
 9  server:
10  enable-self-preservation: false
11  #配置在註冊中心顯示的名字
12  spring:
13  application:
14  name: eureka
15  #配置服務埠
16  #server:
17  #  port: 8761
3.pom.xml配置:
 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 4  <modelVersion>4.0.0</modelVersion>
 5 
 6  <groupId>com.kjm</groupId>
 7  <artifactId>eureka</artifactId>
 8  <version>0.0.1-SNAPSHOT</version>
 9  <packaging>jar</packaging>
10 
11  <name>eureka</name>
12  <description>Eureka服務端</description>
13 
14  <parent>
15  <groupId>org.springframework.boot</groupId>
16  <artifactId>spring-boot-starter-parent</artifactId>
17  <version>2.1.0.RELEASE</version>
18  <relativePath/> <!-- lookup parent from repository -->
19  </parent>
20  <properties>
21  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22  <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
23  <java.version>1.8</java.version>
24  <spring-cloud.version>Greenwich.M3</spring-cloud.version>
25  </properties>
26  <dependencies>
27  <dependency>
28  <groupId>org.springframework.cloud</groupId>
29  <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
30  </dependency>
31  <dependency>
32  <groupId>org.springframework.boot</groupId>
33  <artifactId>spring-boot-starter-test</artifactId>
34  <scope>test</scope>
35  </dependency>
36  </dependencies>
37  <dependencyManagement>
38  <dependencies>
39  <dependency>
40  <groupId>org.springframework.cloud</groupId>
41  <artifactId>spring-cloud-dependencies</artifactId>
42  <version>${spring-cloud.version}</version>
43  <type>pom</type>
44  <scope>import</scope>
45  </dependency>
46  </dependencies>
47  </dependencyManagement>
48  <build>
49  <plugins>
50  <plugin>
51  <groupId>org.springframework.boot</groupId>
52  <artifactId>spring-boot-maven-plugin</artifactId>
53  </plugin>
54  </plugins>
55  </build>
57  <repositories>
58  <repository>
59  <id>spring-milestones</id>
60  <name>Spring Milestones</name>
61  <url>https://repo.spring.io/milestone</url>
62  <snapshots>
63  <enabled>false</enabled>
64  </snapshots>
65  </repository>
66  </repositories>
67 </project>
4.打包:mvn clean install -Dmaven.test.skip=true
5.啟動註冊中心服務端:java -jar eureka-0.0.1-SNAPSHOT.jar

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

-Advertisement-
Play Games
更多相關文章
  • 題意 "題目鏈接" Sol 首先不難想到一種暴力dp,設$f[i][a][b][c]$表示還有$i$輪沒打,場上有$a$個1血,$b$個2血,$c$個三血 發現狀態數只有$s = 166$個,複雜度為$O(ns)$ 矩乘優化一下複雜度為$O(s^3 logn T)$,還是過不去。 因為每次詢問都是獨 ...
  • 今天遇到一個很奇怪的事情,日常刷題中,遇到一個很簡單的題: (不想看我多逼逼只想知道為什麼會出錯看最後) 題目: 題目描述 description 題目描述 description 現有有N個學生的數據記錄,每個記錄包括學號、姓名、三科成績。 編寫一個函數input,用來輸入一個學生的數據記錄。 編 ...
  • # 創建類的線程 import threading import time class MyThread(threading.Thread): def run(self): for i in range(3): time.sleep(1) msg = "我是[線程]" + self.name + '... ...
  • 1.1 數據結構介紹 數據結構:數據用什麼樣的方式組合在一起。 1.2 常見的數據結構 數據存儲的常用結構有:棧、隊列、數組、鏈表和紅黑樹。 棧: 棧:stack,又稱為堆棧,它是運算受限的線性表,其限制是僅允許在標的一端進行插入和刪除操作,不允許在其他任何位置進行添加、查找、刪除等操作。 簡單來說 ...
  • udp: 1.創建套接字 socket 2.綁定本地ip/port bind 3.收發數據 sendto/recvfrom 4.關閉套接字 close tcp客戶端: 1.創建套接字 socket 2.連接服務端 connect 3.收發數據 send/recv 4.關閉套接字 close tcp服 ...
  • “學電腦一定要有一個非常強大的心理狀態,電腦不是黑魔法,都是人想出來的,別人能夠想的出來,那麼,總有一天,我也能夠想的出來。” 指針類型的變數就是保存地址的變數。 int* p=&i;------P是一個指針,P裡面的內容為變數i的地址,即說P指向了i; int* p,q;------註意:*號... ...
  • 很多時候我們會發現輸入的一長串內容不得不全部刪除重新輸入,這時比起一直按著退格鍵不放一個清除內容按鈕更受歡迎。 今天我將介紹三種為QLineEdit添加清除內容按鈕的方法,其中兩種方法有較強的功能針對性,另一種方法則是通用的,不僅可以用來實現清除輸入內容,還可以擴展出其他功能。 本文索引 方法1:s ...
  • os.walk(top,topdown=True,onerror=None,followlinks=False) os.walk()是python中內置(built-in)的目錄樹生成(directory tree generator)函數。 對於每一個在top目錄下的子目錄(包括top目錄本身), ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...