国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

SpringCloud(第 016 篇)電影微服務(wù), 定制Feign,一個Feign功能禁用而另一個

張憲坤 / 862人閱讀

摘要:在該配置中,加入這個方法的話,表明使用了該配置的地方,就會禁用該模塊使用容災(zāi)降級的功能添加訪問層添加電影微服務(wù)啟動類電影微服務(wù),定制,一個功能禁用,另一個功能啟用。

SpringCloud(第 016 篇)電影微服務(wù),定制Feign,一個Feign功能禁用Hystrix,另一個Feign功能啟用Hystrix

-

一、大致介紹
1、在一些場景中,部分功能需要使用斷路器功能,部分功能不需要斷路器功能,所以才有了本章節(jié)的介紹;
2、定制 Feign 的時候,可以為 Feign 設(shè)置 Configuration 配置,在該配置中可以設(shè)置是否需要斷路器功能;
3、該定制的 Configuration 在官方文件介紹中特意提到不需要被啟動類所在的包下,因為該配置類不不要被掃描到;
4、當(dāng)然,此章節(jié)定制后的 Feign 同樣支持客戶端負(fù)載均衡功能,只要開啟多個用戶微服務(wù)即可;
5、這里提到為什么開啟多個微服務(wù)就能做到客戶端負(fù)載均衡呢?
    - 簡答的說就是 Feign 可以看作僅僅只是一個請求網(wǎng)絡(luò)已被封裝好的客戶端HTTP請求工具類,將發(fā)出去的請求封裝好;
    - 至于要請求到哪臺遠(yuǎn)端微服務(wù)的話,剩下的就交給 Ribbon 來處理了,而且默認(rèn)集成使用了負(fù)載均衡的Ribbon客戶端;
    - 自然而然添加多個用戶微服務(wù),F(xiàn)eign自然就支持負(fù)載均衡的功能。
二、實現(xiàn)步驟 2.1 添加 maven 引用包


    4.0.0

    springms-consumer-movie-feign-custom-without-hystrix
    1.0-SNAPSHOT
    jar

    
        com.springms.cloud
        springms-spring-cloud
        1.0-SNAPSHOT
    

    
        
        
            org.springframework.boot
            spring-boot-starter-web
        

        
        
            org.springframework.cloud
            spring-cloud-starter-eureka
        

        
        
            org.springframework.cloud
            spring-cloud-starter-feign
        

        
        
            org.springframework.cloud
            spring-cloud-starter-hystrix
        
    


2.2 添加應(yīng)用配置文件(springms-consumer-movie-feign-custom-without-hystrixsrcmainresourcesapplication.yml)
spring:
  application:
    name: springms-consumer-movie-feign-custom-without-hystrix
server:
  port: 8110
eureka:
  client:
#    healthcheck:
#      enabled: true
    serviceUrl:
      defaultZone: http://admin:admin@localhost:8761/eureka
  instance:
    prefer-ip-address: true
    instance-id: ${spring.application.name}:${spring.cloud.client.ipAddress}:${spring.application.instance_id:${server.port}}

logging:
  level:
    com.springms.cloud.feign.UserFeignCustomClient: DEBUG

# 解決第一次請求報超時異常的方案,因為 hystrix 的默認(rèn)超時時間是 1 秒,因此請求超過該時間后,就會出現(xiàn)頁面超時顯示 :
#
# 這里就介紹大概三種方式來解決超時的問題,解決方案如下:
#
# 第一種方式:將 hystrix 的超時時間設(shè)置成 5000 毫秒
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 5000
#
# 或者:
# 第二種方式:將 hystrix 的超時時間直接禁用掉,這樣就沒有超時的一說了,因為永遠(yuǎn)也不會超時了
# hystrix.command.default.execution.timeout.enabled: false
#
# 或者:
# 第三種方式:索性禁用feign的hystrix支持
# feign.hystrix.enabled: false ## 索性禁用feign的hystrix支持

# 超時的issue:https://github.com/spring-cloud/spring-cloud-netflix/issues/768
# 超時的解決方案: http://stackoverflow.com/questions/27375557/hystrix-command-fails-with-timed-out-and-no-fallback-available
# hystrix配置: https://github.com/Netflix/Hystrix/wiki/Configuration#execution.isolation.thread.timeoutInMilliseconds
2.3 添加實體用戶類User(springms-consumer-movie-feign-custom-without-hystrixsrcmainjavacomspringmscloudentityUser.java)
package com.springms.cloud.entity;

import java.math.BigDecimal;

public class User {

    private Long id;

    private String username;

    private String name;

    private Short age;

    private BigDecimal balance;

    public Long getId() {
        return this.id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getUsername() {
        return this.username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getName() {
        return this.name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Short getAge() {
        return this.age;
    }

    public void setAge(Short age) {
        this.age = age;
    }

    public BigDecimal getBalance() {
        return this.balance;
    }

    public void setBalance(BigDecimal balance) {
        this.balance = balance;
    }

}
2.4 添加訪問遠(yuǎn)端用戶微服務(wù) Feign 客戶端(springms-consumer-movie-feign-custom-without-hystrixsrcmainjavacomspringmscloudfeignUserFeignCustomClient.java)
package com.springms.cloud.feign;

import com.springms.cloud.entity.User;
import com.springms.config.TestFeignCustomConfiguration;
import feign.Param;
import feign.RequestLine;
import org.springframework.cloud.netflix.feign.FeignClient;

/**
 * 用戶Http請求的客戶端,F(xiàn)eignClient 注解地方采用了自定義的配置。
 *
 * 注解FeignClient的傳參:表示的是注冊到 Eureka 服務(wù)上的模塊名稱。
 *
 * @author hmilyylimh
 *
 * @version 0.0.1
 *
 * @date 2017/9/24
 *
 */
@FeignClient(name = "springms-provider-user", configuration = TestFeignCustomConfiguration.class, fallback = UserFeignCustomClientFallback.class)
public interface UserFeignCustomClient {

    /**
     * 這里的注解 RequestLine、Param 是 Feign 的配置新的注解,詳細(xì)請參考鏈接:https://github.com/OpenFeign/feign
     * 
     * @param id
     * @return
     */
    @RequestLine("GET /simple/{id}")
    public User findById(@Param("id") Long id);
}


/****************************************************************************************
 參考代碼如下:

    interface GitHub {
        @RequestLine("GET /repos/{owner}/{repo}/contributors")
        List contributors(@Param("owner") String owner, @Param("repo") String repo);
    }

    static class Contributor {
        String login;
        int contributions;
    }

    public static void main(String... args) {
        GitHub github = Feign.builder().decoder(new GsonDecoder()).target(GitHub.class, "https://api.github.com");

        // Fetch and print a list of the contributors to this library.
        List contributors = github.contributors("OpenFeign", "feign");
        for (Contributor contributor : contributors) {
            System.out.println(contributor.login + " (" + contributor.contributions + ")");
        }
    }
 ****************************************************************************************/
2.5 添加登錄認(rèn)證Eureka服務(wù) Feign 客戶端(springms-consumer-movie-feign-custom-without-hystrixsrcmainjavacomspringmscloudfeignUserFeignCustomSecondClient.java)
package com.springms.cloud.feign;

import com.springms.config.TestEurekaAuthConfiguration;
import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;

/**
 * 用戶Http請求的客戶端,F(xiàn)eignClient 注解地方采用了自定義的配置。
 *
 * 注解FeignClient的傳參:表示的是注冊到 Eureka 服務(wù)上的模塊名稱。
 *
 * @author hmilyylimh
 *
 * @version 0.0.1
 *
 * @date 2017/9/24
 *
 */
@FeignClient(name = "xxx", url = "http://localhost:8761/", configuration = TestEurekaAuthConfiguration.class, fallback = UserFeignCustomSecondClientFallback.class)
public interface UserFeignCustomSecondClient {

    @RequestMapping(value = "/eureka/apps/{serviceName}")
    public String findEurekaInfo(@PathVariable("serviceName") String serviceName);
}
2.6 添加訪問遠(yuǎn)端用戶微服務(wù) Fallback 類(springms-consumer-movie-feign-customsrcmainjavacomspringmsconfigTestFeignCustomConfiguration.java)
package com.springms.cloud.feign;

import com.springms.cloud.entity.User;
import org.springframework.stereotype.Component;

/**
 * Hystrix 客戶端回退機制類。
 *
 * 這里加上注解 Component 的目的:就是因為沒有這個注解,運行時候會報錯,報錯會說沒有該類的這個實例,所以我們就想到要實例化這個類,因此加了這個注解。
 *
 * @author hmilyylimh
 *
 * @version 0.0.1
 *
 * @date 2017/9/24
 *
 */
@Component
public class UserFeignCustomClientFallback implements  UserFeignCustomClient{

    /**
     * Fallback 回退降級的方法,返回一個默認(rèn)的用戶信息。
     *
     * @param id
     * @return
     */
    @Override
    public User findById(Long id) {
        System.out.println("========== findById Fallback " + Thread.currentThread().getThreadGroup() + " - " + Thread.currentThread().getId() + " - " + Thread.currentThread().getName());

        User tmpUser = new User();
        tmpUser.setId(0L);
        return tmpUser;
    }
}
2.7 添加登錄認(rèn)證Eureka服務(wù) Fallback 類(springms-consumer-movie-feign-customsrcmainjavacomspringmsconfigTestEurekaAuthConfiguration.java)
package com.springms.cloud.feign;

import org.springframework.stereotype.Component;

/**
 * Hystrix 客戶端回退機制類。
 *
 * 這里加上注解 Component 的目的:就是因為沒有這個注解,運行時候會報錯,報錯會說沒有該類的這個實例,所以我們就想到要實例化這個類,因此加了這個注解。
 *
 * @author hmilyylimh
 *
 * @version 0.0.1
 *
 * @date 2017/9/24
 *
 */
@Component
public class UserFeignCustomSecondClientFallback implements UserFeignCustomSecondClient{

    @Override
    public String findEurekaInfo(String serviceName) {
        System.out.println("========== findEurekaInfo Fallback " + Thread.currentThread().getThreadGroup() + " - " + Thread.currentThread().getId() + " - " + Thread.currentThread().getName());
        return "springms-provider-user";
    }
}
2.8 添加訪問遠(yuǎn)端用戶微服務(wù)配置類(springms-consumer-movie-feign-custom-without-hystrixsrcmainjavacomspringmsconfigTestFeignCustomConfiguration.java)
package com.springms.config;

import feign.Contract;
import feign.Logger;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * 自定義配置。
 *
 * 不和 com.springms.cloud 在同級目錄,因為文檔有說明,不要被掃描到即可。
 *
 * @author hmilyylimh
 *
 * @version 0.0.1
 *
 * @date 2017/9/24
 *
 */
@Configuration
public class TestFeignCustomConfiguration {

    @Bean
    public Contract feignContract(){
        return new feign.Contract.Default();
    }

    /**
     * 日志級別配置
     *
     * @return
     */
    @Bean
    Logger.Level feignLoggerLevel(){
        return Logger.Level.FULL;
    }
}
2.9 添加訪問遠(yuǎn)端Eureka微服務(wù)配置類(springms-consumer-movie-feign-custom-without-hystrixsrcmainjavacomspringmsconfigTestEurekaAuthConfiguration.java)
package com.springms.config;

import feign.Feign;
import feign.auth.BasicAuthRequestInterceptor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Scope;

/**
 * 認(rèn)證配置,由于 UserFeignCustomSecondClient 訪問 http://localhost:8761/ 需要密碼登錄,所以才有了此配置的出現(xiàn)。
 *
 * 不和 com.springms.cloud 在同級目錄,因為文檔有說明,不要被掃描到即可。
 *
 * @author hmilyylimh
 *
 * @version 0.0.1
 *
 * @date 2017/9/24
 *
 */
@Configuration
public class TestEurekaAuthConfiguration {

    /**
     * 此方法主要配置登錄 Eureka 服務(wù)器的帳號與密碼。
     *
     * @return
     */
    @Bean
    public BasicAuthRequestInterceptor basicAuthRequestInterceptor(){
        return new BasicAuthRequestInterceptor("admin", "admin");
    }

    /**
     * 在該配置中,加入這個方法的話,表明使用了該配置的地方,就會禁用該模塊使用 Hystrix 容災(zāi)降級的功能;
     *
     * @return
     */
    @Bean
    @Scope("prototype")
    public Feign.Builder feignBuilder(){
        return Feign.builder();
    }
}
2.10 添加Web訪問層Controller(springms-consumer-movie-feign-custom-without-hystrixsrcmainjavacomspringmscloudcontrollerMovieFeignCustomWithoutHystrixController.java)
package com.springms.cloud.controller;

import com.springms.cloud.entity.User;
import com.springms.cloud.feign.UserFeignCustomClient;
import com.springms.cloud.feign.UserFeignCustomSecondClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class MovieFeignCustomWithoutHystrixController {

    @Autowired
    private UserFeignCustomClient userFeignCustomClient;

    @Autowired
    private UserFeignCustomSecondClient userFeignCustomSecondClient;

    @GetMapping("/movie/{id}")
    public User findById(@PathVariable Long id) {
        System.out.println("======== findById Controller " + Thread.currentThread().getThreadGroup() + " - " + Thread.currentThread().getId() + " - " + Thread.currentThread().getName());
        return userFeignCustomClient.findById(id);
    }

    @GetMapping("/{serviceName}")
    public String findEurekaInfo(@PathVariable String serviceName){
        System.out.println("======== findEurekaInfo Controller " + Thread.currentThread().getThreadGroup() + " - " + Thread.currentThread().getId() + " - " + Thread.currentThread().getName());
        return userFeignCustomSecondClient.findEurekaInfo(serviceName);
    }
}
2.11 添加電影微服務(wù)啟動類(springms-consumer-movie-feign-custom-without-hystrixsrcmainjavacomspringmscloudMsConsumerMovieFeignCustomWithoutHystrixApplication.java)
package com.springms.cloud;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.feign.EnableFeignClients;

/**
 *
 * 電影微服務(wù),定制Feign,一個Feign功能禁用Hystrix,另一個Feign功能啟用Hystrix。
 *
 * Feign: Java HTTP 客戶端開發(fā)的工具。
 *
 * 注解 EnableFeignClients 表示該電影微服務(wù)已經(jīng)接入 Feign 模塊。
 *
 * @author hmilyylimh
 *
 * @version 0.0.1
 *
 * @date 2017/9/24
 *
 */
@SpringBootApplication
@EnableEurekaClient
@EnableFeignClients
public class MsConsumerMovieFeignCustomWithoutHystrixApplication {

    public static void main(String[] args) {
        SpringApplication.run(MsConsumerMovieFeignCustomWithoutHystrixApplication.class, args);
        System.out.println("【【【【【【 電影自定義FeignWithoutHystrix微服務(wù) 】】】】】】已啟動.");
    }
}
三、測試
/****************************************************************************************
 一、電影微服務(wù),定制Feign,一個Feign功能禁用Hystrix,另一個Feign功能啟用Hystrix(正常功能測試):

 1、編寫:UserFeignCustomClientFallback、UserFeignCustomSecondClientFallback 斷路器回退客戶端類;
 2、編寫 TestEurekaAuthConfiguration 配置,加入禁用 Hystrix 模塊功能的代碼,表示禁用該配置的客戶端模塊;
 3、啟動 springms-discovery-eureka 模塊服務(wù),啟動1個端口;
 4、啟動 springms-provider-user 模塊服務(wù),啟動1個端口;
 5、啟動 springms-consumer-movie-feign-custom-without-hystrix 模塊服務(wù);
 6、在瀏覽器輸入地址 http://localhost:8110/movie/1 可以看到信息成功的被打印出來,表明正常情況下一切正常;
 7、在瀏覽器輸入地址 http://localhost:8110/springms-provider-user 可以看到信息成功的被打印出來,表明正常情況下一切正常;

 注意:如果第6步如果一開始就輸入ID = 0 的用戶信息,不要灰心,耐心等等,說不定服務(wù)之間還沒通信鏈接成功呢。。。
      如果第6步的地址輸入錯誤,請回頭看看 springms-provider-user 該微服務(wù) appname 的名字,再次輸入http://localhost:8110/ + appname 即可試試;

 ****************************************************************************************/

/****************************************************************************************
 二、電影微服務(wù),定制Feign,一個Feign功能禁用Hystrix,另一個Feign功能啟用Hystrix(禁用其中一個 Feign 的斷路器功能):

 1、編寫:UserFeignCustomClientFallback、UserFeignCustomSecondClientFallback 斷路器回退客戶端類;
 2、編寫 TestEurekaAuthConfiguration 配置,加入禁用 Hystrix 模塊功能的代碼,表示禁用該配置的客戶端模塊;
 3、啟動 springms-discovery-eureka 模塊服務(wù),啟動1個端口;
 4、啟動 springms-provider-user 模塊服務(wù),啟動1個端口;
 5、啟動 springms-consumer-movie-feign-custom-without-hystrix 模塊服務(wù);
 6、在瀏覽器輸入地址 http://localhost:8110/movie/1 可以看到信息成功的被打印出來,表明正常情況下一切正常;
 7、在瀏覽器輸入地址 http://localhost:8110/springms-provider-user 可以看到信息成功的被打印出來,表明正常情況下一切正常;

 8、關(guān)閉 springms-provider-user 模塊服務(wù);
 9、在瀏覽器輸入地址 http://localhost:8110/movie/1 可以看到用戶ID = 0 的用戶信息被打印出來,表明該模塊的Hystrix斷路器模塊起作用了;

 10、再關(guān)閉 springms-discovery-eureka 模塊服務(wù);
 11、再在瀏覽器輸入地址 http://localhost:8110/appname-springms-provider-user 可以看到網(wǎng)頁已經(jīng)打印出鏈接不上服務(wù)的錯誤頁面了,表明該模塊禁用Hystrix斷路器模塊也起作用了;
 ****************************************************************************************/
四、下載地址

https://gitee.com/ylimhhmily/SpringCloudTutorial.git

SpringCloudTutorial交流QQ群: 235322432

SpringCloudTutorial交流微信群: 微信溝通群二維碼圖片鏈接

歡迎關(guān)注,您的肯定是對我最大的支持!!!

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/70557.html

相關(guān)文章

  • SpringCloud 013 電影服務(wù)使用定制Feign負(fù)載均衡調(diào)度并為Feign配置

    摘要:不和在同級目錄,因為文檔有說明,該配置文件不需要被掃描到。添加訪問層自定義控制器。添加電影微服務(wù)啟動類電影微服務(wù)使用定制化在客戶端進行負(fù)載均衡調(diào)度并為配置帳號密碼登錄認(rèn)證。注解表示該電影微服務(wù)已經(jīng)接入模塊。 SpringCloud(第 013 篇)電影微服務(wù)使用定制化 Feign 在客戶端進行負(fù)載均衡調(diào)度并為 Feign 配置帳號密碼登錄認(rèn)證 Eureka - 一、大致介紹 1、定制 ...

    cloud 評論0 收藏0
  • SpringCloud 017 電影服務(wù)接入Feign,添加fallbackFactory

    摘要:添加訪問遠(yuǎn)端用戶微服務(wù)類客戶端回退機制類。添加訪問層添加電影微服務(wù)啟動類電影微服務(wù)接入,添加屬性來觸發(fā)請求進行容災(zāi)降級。注解表示該電影微服務(wù)已經(jīng)接入模塊。 SpringCloud(第 017 篇)電影微服務(wù)接入Feign,添加 fallbackFactory 屬性來觸發(fā)請求進行容災(zāi)降級 - 一、大致介紹 1、在一些場景中,簡單的觸發(fā)在 FeignClient 加入 Fallback 屬...

    singerye 評論0 收藏0
  • SpringCloud 012 服務(wù)接入 Feign 負(fù)載均衡通過 FeignClient

    摘要:添加電影微服務(wù)啟動類電影微服務(wù)接入進行客戶端負(fù)載均衡,通過調(diào)用遠(yuǎn)程微服務(wù)。注解表示該電影微服務(wù)已經(jīng)接入模塊。 SpringCloud(第 012 篇)電影微服務(wù)接入 Feign 進行客戶端負(fù)載均衡,通過 FeignClient 調(diào)用遠(yuǎn)程 Http 微服務(wù) - 一、大致介紹 1、本章節(jié)主要介紹在 SpringCloud 生態(tài)圈中,使用一個類似于 Java HTTP 客戶端的工具 Feig...

    Cobub 評論0 收藏0
  • SpringCloud 014 電影 Ribbon 服務(wù)集成 Hystrix 斷路器實現(xiàn)失

    摘要:當(dāng)服務(wù)宕機或者不可用時,即請求超時后會調(diào)用此方法。添加電影微服務(wù)啟動類電影微服務(wù)集成斷路器實現(xiàn)失敗快速響應(yīng),達(dá)到熔斷效果。 SpringCloud(第 014 篇)電影 Ribbon 微服務(wù)集成 Hystrix 斷路器實現(xiàn)失敗快速響應(yīng),達(dá)到熔斷效果 - 一、大致介紹 1、Hystrix 斷路器的原理很簡單,如同電力過載保護器。它可以實現(xiàn)快速失敗,如果它在一段時間內(nèi)偵測到許多類似的錯誤,...

    StonePanda 評論0 收藏0
  • SpringCloud 018 )Zuul 服務(wù) API 網(wǎng)關(guān)服務(wù)之代理與反向代理

    摘要:注意注解能注冊到服務(wù)上,是因為該注解包含了客戶端的注解,該是一個復(fù)合注解。地址可以查看該微服務(wù)網(wǎng)關(guān)代理了多少微服務(wù)的。 SpringCloud(第 018 篇)Zuul 服務(wù) API 網(wǎng)關(guān)微服務(wù)之代理與反向代理 - 一、大致介紹 1、API 服務(wù)網(wǎng)關(guān)顧名思義就是統(tǒng)一入口,類似 nginx、F5 等功能一樣,統(tǒng)一代理控制請求入口,弱化各個微服務(wù)被客戶端記憶功能; 2、本章節(jié)主要講解了使用...

    YancyYe 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<