guice « jersey « Java Enterprise Q&A





1. Practical advice on using Jersey and Guice for RESTful service    stackoverflow.com

From what I can find online, the state of the art for Guice + Jersey integration has stagnated since 2008 when it appears both teams reached an impasse. The crux of ...

2. using jersey-guice to get the values of a posted XML    stackoverflow.com

I got this XML as a post in a jersey-guice webapp. I need the subject imageURL and user. Is there a way to get it in the param like @FormParam("?") String ...

3. How to Inject RequestParameters using Guice    stackoverflow.com

I am trying to get the RequestParamters to be injected into a Guice-powered class I'm using as a servlet. I'm running it with Jersey & embedded Jetty. I declare the class ...

4. Jersey and Guice and nice JSON    stackoverflow.com

I have a project which uses Jersey 1.7, Guice 3.0 and has some JAXB annotated classes which are serialized through resources to XML and JSON. I'd like to configure the JSON ...

5. URI-specific ExceptionMapper in JAX-RS    stackoverflow.com

I'm using Jersey, and Guice as my IOC-container. I'd like to know if it is possible to associate an ExceptionMapper with a specific URI. The reason for this is that I ...

6. Where do I get the jersey-guice package?    stackoverflow.com

I would like to use Jersey and Guice together and I have found this tutorial, and a reference to jersey-juice here. However, I'm not using Maven. I ...

7. How to configure read only transaction in GET request with Guice and Jersey?    stackoverflow.com

I am using Guice, Guice Persist, Hibernate and Jersey. All my resource methods are annotated with @Transactional except for the methods that are annotated with @GET. Is this the correct way ...