I have following resource defined using jersey.
@GET
@Path("/resource/{param1}/{param2}/functions/{name}")
The above will work great if {name} is simple. But I have cases when {name} can be of type "test/name1". When I have such name I get 404 error as jersey cannot find correct endpoint to support this.
How can I fix this?
thanks, Sandeep