tags:

views:

28

answers:

1

Is there a way to pass a list to RESTFul web service method in Jersey? Something like @PathParam("list") List list?

A: 

If I'm understanding what you're trying to do, you could serialize the List object and pass it as a string.

xil3