On 13 Jul 2010, at 1:20 AM, Chris Carrier wrote:
> You can match on a regex pattern. So like:
>
> @Path("/browse/{path:.+}")
>
> And then anything after 'browse/' would get stuck in a @PathParam
> called 'path' in this case. That what you're looking for?
Just tried it, and it's exactly what I am looking for, thank you :)
Regards,
Graham
--