users@jersey.java.net

Re: [Jersey] Jersey and recursive paths

From: Graham Leggett <minfrin_at_sharp.fm>
Date: Tue, 13 Jul 2010 01:32:53 +0200

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
--