1. Pass List to RESTful webservice stackoverflow.comIs there a way to pass a list to RESTFul web service method in Jersey? Something like @PathParam("list") List list? |
2. Sending a application/x-www-form-urlencoded list on html stackoverflow.comI need to send an HTTP Post request to a RESTful service written in Java and uses Jersey. My java function that handles request is like that:
|
3. Having problems getting a List of Objects back from Restful service stackoverflow.comHey guys. I've developed some services in REST that are running on Glassfish 3.1. I have a Java SE application and I am using Jersey as the client api.
|
4. Jackson is not deserialising a generic list that it has serialised stackoverflow.comWhen using Apache Jersey with Jackson for JSON serialisation (on both server and client), I'm hitting a problem when deserialising a generic List. The JSON I am producing is as follows, all ... |
5. Jackson + Jersey returns List with root name "List" stackoverflow.comIm currently trying to create a system for serializing POJO objects using Jackson and Jersey, here my resource:
public class OrganicasFuncaoResource {
|
6. Unsupported Media Type (415)- PUTting a java List stackoverflow.comI'm getting Unsupported Media Type while HTTP putting a list. My code as follows: Client
|
7. How do I generate a list of what resources are available in HTML in Jersey? stackoverflow.comI would like for my web service to provide a handy reference to all available end points from each resource root that is requested with a html content type. It seems ... |
8. Fetching REST resource as List |
9. jersey list of json objects stackoverflow.comI am trying to retrieve in my Jersey implementation resource class post collection of objects like this:
|
10. How to make Jersey/Jackson serialize empty list; single element list as an array stackoverflow.comUsing Jersey and Jackson to create a REST interface, how do I get List fields to be serialized as a list when there are 0 or 1 elements in them. For ... |