springCloud:Finchley.RELEASE
Feign은 Spring Cloud 시스템의 선언적 Rest 클라이언트로, 간단한 구성, 인터페이스 생성 및 주석을 통해 Restful 서비스의 호출을 실현할 수 있습니다. 그리고 SpringMvc를 지원하기 시작합니다.
종속성: org.springframework.cloud:spring-cloud-starter-openfeign
//入口类 @SpringBootApplication @EnableFeignClientspublic class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } } //原型接口声明 @FeignClient("stores")public interface StoreClient { @RequestMapping(method = RequestMethod.GET, value = "/stores") List<Store> getStores(); @RequestMapping(method = RequestMethod.POST, value = "/stores/{storeId}", consumes = "application/json") Store update(@PathVariable("storeId") Long storeId, Store store); }
# To disable Hystrix in Feignfeign: hystrix: enabled: true# To set thread isolation to SEMAPHORE# 将断路器隔离级别由默认的线程隔离调整为信号灯hystrix: command: default: execution: isolation: strategy: SEMAPHORE
@FeignClient(name = "hello", fallback = HystrixClientFallback.class) protected interface HystrixClient { @RequestMapping(method = RequestMethod.GET, value = "/hello") Hello iFailSometimes(); } @Componentstatic class HystrixClientFallback implements HystrixClient { @Override public Hello iFailSometimes() { return new Hello("fallback"); } }
@FeignClient(name = "hello", fallbackFactory = HystrixClientFallbackFactory.class) protected interface HystrixClient { @RequestMapping(method = RequestMethod.GET, value = "/hello") Hello iFailSometimes(); } @Componentstatic class HystrixClientFallbackFactory implements FallbackFactory<HystrixClient> { @Override public HystrixClient create(Throwable cause) { return new HystrixClient() { @Override public Hello iFailSometimes() { return new Hello("fallback; reason was: " + cause.getMessage()); } }; } }
Feign 지원 인터페이스 상속 방식은 인터페이스를 통해 계약을 형성합니다.
//生产者的控制层接口public interface UserService { @RequestMapping(method = RequestMethod.GET, value ="/users/{id}") User getUser(@PathVariable("id") long id); } //生产者的控制器实现 @RestController public class UserResource implements UserService {} //消费端的Feign接口定义 package project.user; @FeignClient("users") public interface UserClient extends UserService {}
압축을 켜면 네트워크 리소스를 효과적으로 절약할 수 있지만, CPU 부담이 늘어나므로 최소 압축 문서 크기를 적절하게 늘리는 것이 좋습니다
//开启压缩 feign.compression.request.enabled=true feign.compression.response.enabled=true //配置压缩文档类型及最小压缩的文档大小 feign.compression.request.mime-types=text/xml,application/xml,application/json feign.compression.request.min-request-size=2048
# 日志支持logging.level.project.user.UserClient: DEBUG
사용자 정의 구성 클래스 정의, 로그 수준 정의
@Configurationpublic class FooConfiguration { @Bean Logger.Level feignLoggerLevel() { return Logger.Level.FULL; } }
로그 수준#🎜🎜 #
# 🎜🎜#FULL, 요청과 응답 모두에 대한 헤더, 본문 및 메타데이터를 기록합니다.
위 내용은 spring cloud2.0 연구 노트 가짜 연습의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!