Most voted "resteasy" questions
6 questions
Sort by count of
-
2
votes1
answer133
viewsJackson does not serialize Jsonobject object
I have a service like this: @Path("/test") public class TestEndPoint { @GET @Produces("application/json") public Response get(){ POJO pojo = new POJO(); pojo.setName("Rafael"); return…
-
0
votes1
answer101
viewsResteasy @Form annotation does not work in Glassfish 4.1
I am trying to make a legacy web java application that is packaged within an EAR and that was written for Jboss 7 to work on Glassfish 4.1. The application is not built with Maven nor with Gradle…
-
0
votes1
answer686
viewsHow to return status code from Java Resteasy request
It’s quite intuitive to make a return of the API with an object or something like that, only you would like to make the return of an object along with the status code of the request. @Override @GET…
-
0
votes0
answers848
viewsHow to get the http request body in the API
How do I access the body content of the request sent by the client? For example: @Override @GET @Path("/mypath") public Response myMethod() { System.out.println("Conteúdo da requisição: " +…
-
0
votes0
answers40
viewsForm via PUT method is not sending the data to a restEasy service
I am sending a form via Ajax, my front is done in Angularjs. I capture the form information and send it to a service that is in Java Restreasy. But it arrives Nullo! Someone could help me? In my…
-
0
votes1
answer70
viewsError connecting SQL Server to Java in Resteasy API
I’m using the driver JDBC from microsoft 6.0 in a design of an API using Java (JRE 1.8) with resteasy using Eclipse Oxygen and Tomcat 7 (I tried with other versions and presented the same behavior).…