I am new to JAX-RS and was trying to implement a simple service. But I am not sure how to go about sending an array into the REST URI for the below code
@GET
@Path ("/address/ids/{addressIds}")
public AddressDetailCollection getAddressById(@PathParam ("addressIds")
Integer[] ids)
{
......
}
--
View this message in context:
http://www.nabble.com/Passing-array-as-a-parameter-in-JAX-RS-tp22690005p22690005.html
Sent from the cxf-user mailing list archive at Nabble.com.
