We can retrieve input params using different type of annotations like... @PathParam,@FormParam ..etc.
and in code,
public Customer getDetails(@FormParam("custNo") int no) {
But what if i have 10+ values in the input form ? is there any other way ? I have searched in Google but all the time i am seeing @PathParams and @FormParams. Can we bind all input form values into some object and retrieve ?
Thank you Siva