Top "Resteasy" questions

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

Can not deserialize instance of java.util.ArrayList out of START_OBJECT token

I'm trying to POST a List of custom objects. My JSON in request body is this: { "collection": [ { "name": "Test order1", "…

java spring jackson jax-rs resteasy
Java 8 LocalDate Jackson format

For java.util.Date when I do @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "dd/MM/yyyy") private Date dateOfBirth; then …

java json jackson jax-rs resteasy
REST - HTTP Post Multipart with JSON

I need to receive an HTTP Post Multipart which contains only 2 parameters: A JSON string A binary file Which is …

java json rest http resteasy
PersistenceContext EntityManager injection NullPointerException

I have a war containing the following: META-INF/MANIFEST.MF WEB-INF/classes/META-INF/persistence.xml WEB-INF/classes/com/test/service/…

java hibernate jpa jboss resteasy
No 'Access-Control-Allow-Origin' header is present on the requested resource - Resteasy

I am working on a webapplication comprises UI-Angular , Server-Java , RestEasy 3.0.9.Final for rest api calls When i tried to access …

rest cors resteasy
RESTEasy or Jersey?

I have a requirement for RESTFul webservices. It is up to my team to decide whether to go with Jersey …

web-services rest jersey resteasy
How to choose between Jersey, Apache Wink and JBoss RESTEasy?

I just heard about Apache Wink, and I was wondering what differences it had compared to Jersey or JBoss RESTEasy. …

apache jersey jax-rs resteasy
Could not find MessageBodyWriter for response object of type: java.util.ArrayList of media type: text/html - in Resteasy

I am developing RESTEasy Example. In this example I am using all latest dependencies and deploying om tomcat 8.x version. …

java jaxb resteasy
Unable to find a MessageBodyReader of content-type application/json and type class java.lang.String

I am using RestEasy client with jackson providers and getting the above error clientside code is: ClientRequest request = new ClientRequest(…

json rest jax-rs jackson resteasy
Optional @PathParam in Jax-RS

I have a service where the last part of the path is optional, the user can both enter /mypath/ and /…

java regex jboss jax-rs resteasy