@Path("/{firstName: ^(?!nameblacklist$).*$}/{lastName: .*}")
I just want to make this resource not to match string like /nameblacklist/start
. But it failed me when testing.
Does not Does not regex in Jersey @Path support complicated expression?
@Path("/{firstName: ^(?!nameblacklist$).*$}/{lastName: .*}")
I just want to make this resource not to match string like /nameblacklist/start
. But it failed me when testing.
Does not Does not regex in Jersey @Path support complicated expression?