awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
Netflix avatar

Netflix/feign

0
View on GitHub↗
9,783 نجوم·1,939 تفرعات·Java·Apache-2.0·5 مشاهدات

Feign

Feign هو عميل HTTP تعريفي (declarative) بلغة Java يقوم بأتمتة إنشاء عملاء خدمات الويب. يسمح للمطورين بتعريف نقاط نهاية REST API باستخدام الواجهات والتعليقات التوضيحية (annotations)، مما يلغي الحاجة إلى كتابة كود متكرر (boilerplate) للطلبات والاستجابات يدوياً.

يستخدم المشروع وكلاء ديناميكيين (dynamic proxies) لتعيين استدعاءات الأساليب إلى قوالب طلبات HTTP. يتميز بخط أنابيب قابل للتوصيل من المشفرات وفك التشفير لتحويل كائنات Java إلى أجسام طلبات وتحويل أجسام الاستجابة مرة أخرى إلى كائنات آمنة النوع (type-safe).

تغطي المكتبة مجموعة واسعة من قدرات التكامل، بما في ذلك اعتراض الطلبات لإدارة الرؤوس، ومنطق إعادة المحاولة القائم على الاستراتيجية لاستهلاك الخدمة المرن، وتوسيع القوالب لعناوين URI. كما توفر أدوات لتسجيل سجلات حركة مرور HTTP وجمع مقاييس أداء العميل.

Features

  • Declarative API Clients - Allows the definition of network endpoints using a declarative interface style with annotations.
  • Pluggable Transformation Pipelines - Provides a pluggable pipeline of interchangeable encoders and decoders for transforming network payloads.
  • API Request Automation - Automates the transformation of Java objects into formatted HTTP request bodies and query parameters.
  • API Client Generators - Automates the generation of HTTP client implementations by mapping Java method calls to request templates.
  • Microservices Communications - Standardizes synchronous communication between distributed microservices using a declarative client approach.
  • HTTP Client Libraries - Serves as a comprehensive Java library for performing synchronous and asynchronous HTTP requests.
  • HTTP Client Wrappers - Wraps complex HTTP communication into type-safe Java interfaces to eliminate request boilerplate.
  • Client Services - Implements network clients that provide type-safe responses and automated request handling.
  • Response Body Decoders - Transforms HTTP response payloads into type-safe Java objects using a pluggable decoding system.
  • Dynamic Proxies - Uses runtime dynamic proxies to intercept interface calls and dispatch them as HTTP requests.
  • Interface-to-Endpoint Mappings - Maps Java method signatures and annotations directly to HTTP endpoints to automate request construction.
  • REST Clients - Implements an interface-based approach to define and execute requests against RESTful APIs.
  • Query Parameter Encoders - Automatically formats maps and objects into valid query strings for dynamic request URL construction.
  • Multipart Form Encoding - Serializes request payloads into multipart/form-data or url-encoded formats for web service transmission.
  • Request Header Configuration - Provides comprehensive tools for defining static and dynamic HTTP request headers via annotations and interceptors.
  • Retry Policies - Implements configurable retry policies to automatically re-execute failed network requests based on specific exceptions.
  • HTTP Request Interceptors - Includes middleware components to intercept and modify outgoing requests for global header injection and authentication.
  • API Error Handling Patterns - Processes non-success HTTP responses through a custom decoder to wrap failures into type-safe exceptions.
  • Interceptor Sequences - Processes outgoing requests through an ordered sequence of interceptors to modify metadata or inject headers.
  • Retry Strategies - Determines whether to re-execute failed network operations based on configurable policies and exception types.
  • Resilience Retry Patterns - Implements configurable retry policies and failure handling to ensure resilient web service consumption.
  • URI Template Expanders - Resolves placeholders in URIs and headers using standard template expansion rules and method parameters.
  • External API Integrations - Facilitates integration with external REST services using custom interceptors and error handling.
  • Request Body Attachers - Converts Java objects into HTTP request bodies using configurable encoders and template expansion.
  • REST框架 - 声明式HTTP客户端连接器。

سجل النجوم

مخطط تاريخ النجوم لـ netflix/feignمخطط تاريخ النجوم لـ netflix/feign

بحث بالذكاء الاصطناعي

استكشف المزيد من المستودعات الرائعة

صف ما تحتاجه بلغة بسيطة — وسيقوم الذكاء الاصطناعي بترتيب آلاف المشاريع مفتوحة المصدر المنسقة حسب الصلة.

Start searching with AI

الأسئلة الشائعة

ما هي وظيفة netflix/feign؟

Feign هو عميل HTTP تعريفي (declarative) بلغة Java يقوم بأتمتة إنشاء عملاء خدمات الويب. يسمح للمطورين بتعريف نقاط نهاية REST API باستخدام الواجهات والتعليقات التوضيحية (annotations)، مما يلغي الحاجة إلى كتابة كود متكرر (boilerplate) للطلبات والاستجابات يدوياً.

ما هي الميزات الرئيسية لـ netflix/feign؟

الميزات الرئيسية لـ netflix/feign هي: Declarative API Clients, Pluggable Transformation Pipelines, API Request Automation, API Client Generators, Microservices Communications, HTTP Client Libraries, HTTP Client Wrappers, Client Services.

ما هي البدائل مفتوحة المصدر لـ netflix/feign؟

تشمل البدائل مفتوحة المصدر لـ netflix/feign: openfeign/feign — Feign is a declarative Java HTTP client framework that maps method signatures to REST API requests. It functions as an… imroc/req — req is a chainable HTTP client library for Go designed to simplify request configuration and automatic response… go-resty/resty — Resty is a high-level HTTP client library for Go designed for consuming REST services. It provides a streamlined… shazow/urllib3 — urllib3 is a Python HTTP client library used to send network requests and receive responses. It provides core… kittinunf/fuel — Fuel is a Kotlin HTTP client library for Android and Kotlin applications that handles both synchronous and… libcpr/cpr — C++ is a high-level HTTP client library and wrapper for libcurl. It provides a C++ interface for making network…

بدائل مفتوحة المصدر لـ Feign

مشاريع مفتوحة المصدر مشابهة، مرتبة حسب عدد الميزات المشتركة مع Feign.
  • openfeign/feignالصورة الرمزية لـ OpenFeign

    OpenFeign/feign

    9,784عرض على GitHub↗

    Feign is a declarative Java HTTP client framework that maps method signatures to REST API requests. It functions as an HTTP interface mapper, allowing the creation of type-safe clients by defining service interfaces with annotations to eliminate manual request logic. The framework features a pluggable HTTP transport layer, which decouples request definition from execution by routing network traffic through interchangeable underlying HTTP engines. It provides a comprehensive request management pipeline including interceptors for modifying headers, policy-driven retry logic for failure recover

    Javahttp-clientinterfacejava
    عرض على GitHub↗9,784
  • imroc/reqالصورة الرمزية لـ imroc

    imroc/req

    4,807عرض على GitHub↗

    req is a chainable HTTP client library for Go designed to simplify request configuration and automatic response decoding into structures. It provides a fluent-interface request builder that allows developers to incrementally define request properties and encapsulate HTTP logic into reusable API SDKs. The project distinguishes itself with a TLS fingerprint emulator that mimics browser network signatures to bypass bot detection and crawler filters. It also includes a concurrent file downloader that increases transfer speeds by fetching large remote files in parallel segments. The library cover

    Gogogolanghttp
    عرض على GitHub↗4,807
  • go-resty/restyالصورة الرمزية لـ go-resty

    go-resty/resty

    11,704عرض على GitHub↗

    Resty is a high-level HTTP client library for Go designed for consuming REST services. It provides a streamlined interface for executing network requests, managing server-sent event streams, and automatically mapping JSON and XML responses into data structures. The library includes built-in mechanisms for service resilience and traffic management, such as circuit breakers to prevent cascading failures, token-bucket rate limiting, and automated request retries with exponential backoff. It also features client-side load balancing to distribute outgoing traffic across multiple base URLs and requ

    Gobackoffcircuit-breakercurl-command
    عرض على GitHub↗11,704
  • shazow/urllib3الصورة الرمزية لـ shazow

    shazow/urllib3

    4,026عرض على GitHub↗

    urllib3 is a Python HTTP client library used to send network requests and receive responses. It provides core components for managing HTTP connection pools, routing traffic through proxies, validating TLS certificates, and executing automatic request retries. The library focuses on network reliability and efficiency by maintaining a system that reuses established connections to multiple hosts to reduce latency. It ensures secure communication through client-side certificate verification and handles transient network errors using policy-based retry logic. The project covers broad networking c

    Python
    عرض على GitHub↗4,026
  • عرض جميع البدائل الـ 30 لـ Feign→