Top "Resteasy" questions

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

List all exposed/available endpoints of RestEasy service?

Is it possible to list all exposed/available endpoints of RestEasy service in a simple way?

jboss resteasy
Reusing JAX RS Client in multi-threaded environment (with resteasy)

According to the documentation, "Clients are heavy-weight objects that manage the client-side communication infrastructure. Initialization as well as disposal of …

java multithreading jersey jax-rs resteasy
Create Hibernate-Session per Request

I just started a simple Java testproject which manages some entities using Hibernate and provides a REST interface to manipulate …

java hibernate jetty design-patterns resteasy
JAX-RS: How to extend Application class to scan packages?

Currently, I do something similar to import javax.annotation.Nonnull; import javax.ws.rs.ApplicationPath; import javax.ws.rs.core.…

java rest jersey jax-rs resteasy
RESTEasy Exception: RESTEASY003770: Response is committed, can't handle exception

I'm getting a strange exception from my RESTEasy server. This happens when a particularly large response is being returned to …

rest tomcat jax-rs resteasy
Required jars for RestEasy Client

I need to provide a java REST client, which should contain all required jars in one bundle. I chose RestEasy …

java rest jax-rs resteasy java-ee-7
Changing Default JSON Time Format with RESTEasy 3.x

I am using RESTEasy to implement a REST Service using JSON serialization. Currently, Dates are getting serialized to milliseconds since 1970. …

java json jackson resteasy
Wildfly Server, Maven, RestEasy (java.lang.ClassNotFoundException: org.jboss.resteasy.core.ResourceMethod)

I migrate a project from JBOSS to Wildfly Server. I made some changes in standalone.xml and everything works fine, …

java maven resteasy wildfly-10
RestEasy client framework file upload

Does anyone know how to create the RestEasy client side calls to upload a file using the following two interface …

file-upload client resteasy
How can I upload image and data in the same request with angular and resteasy?

I'm facing a problem to make a angular crud with jax-rs on backend. The crud is very simple, some text …

java angularjs jax-rs resteasy