Registry / http-client / feign-core

feign-core

JSON →
library13.9.3javamavenunverified

Feign is a Java HTTP client binder that simplifies HTTP API clients.

<dependency> <groupId>io.github.openfeign</groupId> <artifactId>feign-core</artifactId> <version>13.9.3</version> </dependency>
INSTALL
IMPORT
SIG · FEIGN-CORE
F
feign-core
http-clientjavav13.9.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Feign
feign.Feign

Creates a Feign client for a simple GET API.

import feign.Feign; import feign.RequestLine; interface Api { @RequestLine("GET /hello") String hello(); } public class Example { public static void main(String[] args) { Api api = Feign.builder() .target(Api.class, "http://example.com"); System.out.println(api.hello()); } }
Debug
Known issues
breakingFeign 10.x+ uses different builder API; older versions may have breaking changes.
fix
Use Feign.builder() for 10.x+; for older versions, use Feign.create().
affects: <10.0
Upgrade
Version history
13.9.3latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
23 hits · last 30 days
node
20
OpenAI (training)
1
Resources
feign-core — mvn dependency:get feign-core · libregistry