Registry / web-framework / quarkus-resteasy

quarkus-resteasy

JSON →
library3.36.1javamavenunverified

REST endpoint framework implementing Jakarta REST (JAX-RS) for Quarkus applications.

<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-resteasy</artifactId> <version>3.36.1</version> </dependency>
INSTALL
IMPORT
SIG · QUARKUS-RESTEASY
Q
quarkus-resteasy
web-frameworkjavav3.36.1
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.

GET
jakarta.ws.rs.GET

Minimal JAX-RS resource endpoint with Quarkus RESTEasy

import jakarta.ws.rs.GET; import jakarta.ws.rs.Path; import jakarta.ws.rs.Produces; import jakarta.ws.rs.core.MediaType; @Path("/hello") public class ExampleResource { @GET @Produces(MediaType.TEXT_PLAIN) public String hello() { return "Hello from Quarkus"; } }
Debug
Known issues
breakingQuarkus RESTEasy uses Jakarta REST API; ensure your code uses jakarta.ws.rs, not javax.ws.rs.
fix
Use jakarta.ws.rs imports for Quarkus 3.x and later.
affects: >=3.0
Upgrade
Version history
3.36.1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
8
Resources
quarkus-resteasy — mvn dependency:get quarkus-resteasy · libregistry