Hi Benson
{path:.*}, without '$' should do it,
ex,
@Path("/something/{path:.*}")
@GET
public Something getIt()
cheers, Sergey
On Tue, Nov 16, 2010 at 10:31 PM, Benson Margulies <[email protected]>wrote:
> There was email a while back about CXF lacking support for JAX-RS path
> regexps.
>
> I am in need of supporting a path of the form
> /something/any/thing/at/all capturing the any/thing/at/all into a
> string.
>
> I tried ${path:.*}, but either it doesn't work still or I've
> misunderstood the mediocre JAX-RS reference javadoc.
>