Registry / http-client / quarkus-rest-client

quarkus-rest-client

JSON →
library3.17.4javamavenunverified

Call REST services using Quarkus REST Client, a type-safe HTTP client for Java.

<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-rest-client</artifactId> <version>3.17.4</version> </dependency>
INSTALL
IMPORT
SIG · QUARKUS-REST-CLIEN
Q
quarkus-rest-client
http-clientjavav3.17.4
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.

RestClient
✓ org.eclipse.microprofile.rest.client.inject.RestClient

Injects a REST client interface to call a remote service.

import org.eclipse.microprofile.rest.client.inject.RestClient; import jakarta.ws.rs.GET; import jakarta.ws.rs.Path; import jakarta.inject.Inject; @Path("/client") public class MyClientResource { @Inject @RestClient MyService service; @GET public String call() { return service.getData(); } } @Path("/api") interface MyService { @GET String getData(); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
3.17.4latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
16 hits · last 30 days
node
14
Resources
quarkus-rest-client — mvn dependency:get quarkus-rest-client · libregistry