Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jersey-dev] @QueryParam on subresource?

I have a sub resource method and it takes a query param.
I am trying to call it with data, and both the parent and child have query params with the same name...
I have tried:
http://localhost:8080/webapp/resources/parent?param=a/child?param=b
I would expect the parent resource to have its "param" query string set to "a", and its child resources "param" to be set to "b", but this does not seem to work.

How do I build the correct query string?

Todd

Back to the top