Top "Resteasy" questions

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

How to set HTTP header in RESTEasy client framework?

RESTEasy (a JAX-RS implementation) has a nice client framework, eg: RegisterBuiltin.register(ResteasyProviderFactory.getInstance()); SimpleClient client = ProxyFactory.create(SimpleClient.class, "…

java http-headers jax-rs resteasy
How do I get the @RolesAllowed annotation to work for my Web application?

I am making a Web application using Backbone.js, Bootstrap, NetBeans IDE 8.0, Java EE 7, JDK 8, WildFly server 8.1.0, JBoss RESTEasy (resteasy-jaxrs-3.0.8), …

java security ejb jax-rs resteasy
javax.ws.rs.NotFoundException: Could not find resource for full path with RESTEasy and Wildfly 8.1.0.Final

I am facing following problem. I have spent more than 3 days on this but cannot find a solution. Please guide …

java rest jax-rs resteasy wildfly-8
Logging request and response in one place with JAX-RS

I have a RESTEasy web server with lot of methods. I want implement logback to track all requests and responses, …

java rest jax-rs resteasy
Two GET methods with different query parameters

Could we create the same GET URI but with different query parameters? For example, I have two REST GET URIs: /…

java rest resteasy
RESTEasy - @Path requiring a full path?

I was messing around with JAX-RS and made an application which calls REST services which produce JSON. I tried Jersey …

java jax-rs resteasy
HTTP Status 415 - Cannot consume content type

POST operation to the REST service with JSON body returning org.jboss.resteasy.spi.UnsupportedMediaTypeException : Cannot consume content type exception …

java json resteasy postman
Netty based non-blocking REST framework

I am working on a RESTfull application which requires high scalability. I am considering Netty based frameworks for RESTfull applications. …

java rest netty nio resteasy
Accessing Jackson Object Mapper in RestEasy

I've been asked to beautify default Jackson JSON coming out of a RestEasy endpoint. I did some research on Jackson …

json jackson resteasy
How to use RESTEasy client framework to send data in a POST

I am using the RESTEasy client framework to call a RESTful webservice. The call is made via a POST and …

java rest resteasy