Delete servicesif it is not part of your servlet mapping or path.
( /- )
EDIT:
, myapp + + , . + - /* so/myapp/services/path.
resteasy, , . , PathHelper.replaceEnclosedCurlyBraces
EDIT2:
, @Provider
Resteasy v1.2.1
@Provider
@Path("/")
public class xxx
{
@GET
@Path(value = "path1")
public Response m1(@QueryParam(value = "a") String a)
{
...
}
@GET
@Path(value = "path2")
public Response m2(@QueryParam(value = "b") String b)
{
...
}
}