中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

Ribbon怎么在SpringCloud中使用-創(chuàng)新互聯(lián)

Ribbon怎么在SpringCloud中使用?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

成都網(wǎng)站設計、做網(wǎng)站的關注點不是能為您做些什么網(wǎng)站,而是怎么做網(wǎng)站,有沒有做好網(wǎng)站,給創(chuàng)新互聯(lián)一個展示的機會來證明自己,這并不會花費您太多時間,或許會給您帶來新的靈感和驚喜。面向用戶友好,注重用戶體驗,一切以用戶為中心。

搭建Eureka服務器

 配置 pom.xml,加入springCloud核心依賴、配置及eureka服務器依賴

<parent>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>1.5.13.RELEASE</version>
</parent>
<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-dependencies</artifactId>
      <version>Dalston.SR5</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>
<dependencies>
  <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-config</artifactId>
  </dependency>
  <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-eureka-server</artifactId>
  </dependency>
</dependencies>

配置 application.yml(紅色部分是必須要寫的,黑色部分不寫也能正常運行 但是建議寫上,在這里筆者將官網(wǎng)的代碼貼上)

server:
 port: 8761
eureka:
 instance:
  hostname: localhost
 client:
  registerWithEureka: false 禁止向eureka注冊服務,因為它自己本身就是服務器
  fetchRegistry: false 這里不需要抓取注冊表
  serviceUrl:
   defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/

創(chuàng)建啟動類:Application.java(將服務跑起來放著,稍后會用到)配置 pom.xml,加入springCloud核心依賴、配置及eureka服務依賴

@SpringBootApplication
@EnableEurekaServer
public class Application {
  
  public static void main(String[] args) {
    new SpringApplicationBuilder(Application.class).web(true).run(args);
  }
}

Ribbon怎么在SpringCloud中使用

服務提供者

配置 pom.xml,加入springCloud核心依賴、配置及eureka客戶端依賴

<parent>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>1.5.13.RELEASE</version>
</parent>
<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-dependencies</artifactId>
      <version>Dalston.SR5</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>
<dependencies>
  <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-config</artifactId>
  </dependency>
  <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-eureka</artifactId>
  </dependency>
</dependencies>

配置 application.yml(需要使用defaultZone向服務器注冊服務,否則就算該服務運行起來了,但沒有向服務器注冊服務,也是使用不了的)(name 這個名稱是顯示在服務列表中的名稱,養(yǎng)成好習慣,一定要起有意義的名稱)

spring:
 application:
  name: springCloud-ribbon-police
eureka:
 client:
  serviceUrl:
   defaultZone: http://localhost:8761/eureka/

因為該服務是提供服務的,所以下面會建一個實體類及Controller用來對外提供服務,創(chuàng)建實體類:Police.java

public class Police {
  private String id;// 警察編號,用來保存用戶輸入的參數(shù)
  private String url;// 處理請求的服務器url
  private String message;// 提示信息
  public String getId() {
    return id;
  }
  public void setId(String id) {
    this.id = id;
  }
  public String getUrl() {
    return url;
  }
  public void setUrl(String url) {
    this.url = url;
  }
  public String getMessage() {
    return message;
  }
  public void setMessage(String message) {
    this.message = message;
  } 
}

創(chuàng)建對外提供服務的Controller:PoliceController.java(@RestController注解中包含了@Controller+@ResponseBody)

@RestController
public class PoliceController {

  @RequestMapping(value="/getPolice", method=RequestMethod.GET, produces=MediaType.APPLICATION_JSON_VALUE)
  public Police getPolice(HttpServletRequest request){
    Police p = new Police();
    p.setUrl(request.getRequestURL().toString());
    p.setMessage("警察派出成功");
    return p;
  }
  
  @RequestMapping(value="/getPoliceById/{id}", method=RequestMethod.GET, produces=MediaType.APPLICATION_JSON_VALUE)
  public Police getPolice(HttpServletRequest request, @PathVariable("id") String id){
    Police p = new Police();
    p.setId(id);
    p.setUrl(request.getRequestURL().toString());
    p.setMessage("指定警察派出成功");
    return p;
  }
}

因為我們要測試負載均衡,所以這里的服務提供者需要開啟多個服務實例,下面我們用讀取手動輸入端口號的方法,啟動多個服務實例,筆者在這里啟動了兩個服務實例:8080、8081

@SpringBootApplication
@EnableEurekaClient
public class PoliceApplication {
  
  public static void main(String[] args) {
    Scanner scan = new Scanner(System.in);
    String port = scan.nextLine();
    new SpringApplicationBuilder(PoliceApplication.class).properties("server.port="+port).run(args);
  } 
}

如下圖,出現(xiàn)了兩個服務實例,分別是:8080、8081,紅色的信息咱們先不管他,如果實在有看著不順眼的小伙伴,可以配置心跳(簡單的來說,就是配置服務器每隔多久檢查一次服務實例狀態(tài),如果某個服務因為某些原因停掉 不能用了,那么就將該服務 從服務列表中移除掉)

Ribbon怎么在SpringCloud中使用

服務調(diào)用者

 配置 pom.xml,加入springCloud核心依賴、配置及eureka客戶端依賴、Ribbon依賴

<parent>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>1.5.13.RELEASE</version>
</parent>
<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-dependencies</artifactId>
      <version>Dalston.SR5</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>
<dependencies>
  <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-config</artifactId>
  </dependency>
  <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-eureka</artifactId>
  </dependency>
  <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-ribbon</artifactId>
  </dependency>
</dependencies>

 配置 application.yml(這里也將該服務注冊到服務器,一定要進行注冊)

server:
 port: 9090
spring:
 application:
  name: springCloud-ribbon-person
eureka:
 client:
  serviceUrl:
   defaultZone: http://localhost:8761/eureka/

 創(chuàng)建調(diào)用服務Controller:PersonController.java

RestTemplate 是由 Spring Web 模塊提供的工具類,與 SpringCloud 無關,是獨立存在的

因 SpringCloud 對 RestTemplate 進行了一定的擴展,所以 RestTemplate 具備了負載均衡的功能

@RestController
@Configuration
public class PersonController {
  @Bean
  @LoadBalanced
  public RestTemplate getRestTemplate(){
    return new RestTemplate();
  }
  @RequestMapping("/getPolice")
  public String getPolice(){
    RestTemplate rt = getRestTemplate();
    String result = rt.getForObject("http://springCloud-ribbon-police/getPolice", String.class);
    return result;
  }
  @RequestMapping("/getPoliceById/{id}")
  public String getPoliceById(@PathVariable("id") String id){
    RestTemplate rt = getRestTemplate();
    String result = rt.getForObject("http://springCloud-ribbon-police/getPoliceById/"+id, String.class);
    return result;
  }
}

創(chuàng)建啟動類:PersonApplication.java

@SpringBootApplication
@EnableEurekaClient
public class PersonApplication {
  
  public static void main(String[] args) {
    new SpringApplicationBuilder(PersonApplication.class).web(true).run(args);
  } 
}

Ribbon怎么在SpringCloud中使用

到目前為止,eureka服務器、服務提供者、服務調(diào)用者(負載均衡)就已經(jīng)全寫好了,下面我們訪問接口,來試一下 服務到底能不能調(diào)通

我們分別調(diào)用:http://localhost:9090/getPolice、http://localhost:9090/getPoliceById/100

Ribbon怎么在SpringCloud中使用

Ribbon怎么在SpringCloud中使用

關于Ribbon怎么在SpringCloud中使用問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關知識。

網(wǎng)站標題:Ribbon怎么在SpringCloud中使用-創(chuàng)新互聯(lián)
本文路徑:http://www.rwnh.cn/article18/isogp.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供云服務器、建站公司定制開發(fā)、網(wǎng)站排名、企業(yè)建站品牌網(wǎng)站建設

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站制作
太谷县| 鹿泉市| 扎兰屯市| 郧西县| 隆安县| 西贡区| 喀喇沁旗| 那曲县| 三门县| 武鸣县| 宁明县| 沅江市| 临城县| 高淳县| 汉中市| 沈阳市| 莱阳市| 哈尔滨市| 湛江市| 阜宁县| 天祝| 自治县| 三亚市| 天长市| 尚义县| 左贡县| 沁水县| 东阳市| 积石山| 扎囊县| 望奎县| 察哈| 勐海县| 灵山县| 安平县| 乌苏市| 杭锦旗| 沈阳市| 阜新市| 合川市| 南宁市|