Top "Resteasy" questions

A JBoss project that provides various frameworks to help build RESTful web services and Java applications

Difference between RESTEasy and JAX-RS

What is Resteasy? what is the difference between RESTEasy and JAX-RS? What is the difference between @PathParam and @QueryParam?

java jax-rs resteasy
RESTEasy client framework authentication credentials

RESTEasy (a JAX-RS implementation) has a nice client framework, eg: ServiceApi client = ProxyFactory.create(ServiceApi.class, baseUri); How do you …

java http jax-rs resteasy
Using JAXB to pass subclass instances as superclass

What I have is a set of Java classes (close to 25) representing message types. They all inherit from a Message …

java hibernate jaxb resteasy
RESTeasy and Returning to a JSP page with a model

Is there an easy, not using spring, way to have RESTeasy return a jsp or html page with a model? …

model-view-controller jboss resteasy
Rest easy response status + body

I have following method in my rest service: @POST @Path("/create") @ResponseStatus(HttpStatus.CREATED) @Consumes(MediaType.WILDCARD) public String create( .... ) {.... …

httpresponse resteasy
How to use RESTEasy PreProcessInterceptor only in specific methods?

I'm writing a REST API, making use of RestEasy 2.3.4.Final. I know that a Interceptor will intercept all of my …

java rest resteasy interceptor
What is JAXB and JAXRS ? How are they related?

Sorry for this blunt question . But many use these 2 terms day in and day out yet I don't know .I …

jaxb jax-rs resteasy restlet xml-binding
How enable JSONP in RESTEasy?

Title say about my issue. I need wrap DTO in to a javascript method callback. Currently I return on request …

java json rest jsonp resteasy
Integrating Jetty with RESTEasy

Any links on how to integrate Jetty and RESTEasy? I am kinda stuck trying to configure RESTEasy with Jetty together....…

java jakarta-ee servlets jetty resteasy
How to delete file after REST response

What is the best way to handle deleting a file after it has been returned as the response to a …

java rest resteasy