The resteasy proposal to perform validations is to use a @ValidateRequest annotation in your jax-rs resource:
@Path("resourcePath")
@ValidateRequest
public interface Resource {
@POST
@Path("insert")
public String insert(@Valid FormBean form);
}
But this ties your code to a specific jax-rs implementation, something I would like to avoid. Is there any generic way to use JSR 303 annotations to validate the incoming data?