没有任何工具简单地验证查询参数使用泽西(和Maven)? 我试图做这样的事情使用@NotNull注释(球衣豆验证):
@GET
@Path("/count")
@Produces(MediaType.APPLICATION_XML)
public Response count(@NotNull @QueryParam("my_param") String my_param) {
//TODO automatically return 400 Bad Request if my_param is null
return Response.ok("This is a response", MediaType.APPLICATION_XML).build();
}
我想自动验证查询参数,如果没有提供“my_param”返回400错误的请求的方法。