RestEasy @ValidateRequest 不工作
RestEasy @ValidateRequest is not working
I am having below configuration for a RestEasy Rest WS
jaxrs-api-2.3.5.Final.jar,
resteasy-jaxrs-2.3.5.Final.jar,
resteasy-hibernatevalidator-provider-2.3.5.Final.jar,
hibernate-validator-4.3.2.Final.jar,
validation-api-1.0.0.GA.jar
I have added @ValidateRequest on class(tried on method as well) to validate any request input data before processing the request but i dont know why validation in not being invoked.
@Path(value = "/events")
@ValidateRequest
public class EventRestController {
@GET
@Produces({ MediaType.APPLICATION_XML, ACCEPT_HEADER })
public Response get(@QueryParam("componentSerialNumber") @NotNull String componentSerialNumber) {
System.out.println("powerChangeEvevnt.getComponentSerialNumber() " + componentSerialNumber);
return Response.ok().build();
}
}
我不知道我错过了什么。
请建议。
打开 Rest 资源和提供者的自动扫描解决了这个问题,验证开始工作。
只需在 web.xml
中将 resteasy.scan 参数值设置为 true
我已经在扩展 javax.ws.rs.Application class 的子 class 中显式注册了所有资源,但它没有考虑将 HibernateValidator 作为验证器。我发现将 HibernateValidator 注册为验证器非常复杂,所以只是删除了这个显式注册的配置 class 并启用了自动扫描。
I am having below configuration for a RestEasy Rest WS
jaxrs-api-2.3.5.Final.jar,
resteasy-jaxrs-2.3.5.Final.jar,
resteasy-hibernatevalidator-provider-2.3.5.Final.jar,
hibernate-validator-4.3.2.Final.jar,
validation-api-1.0.0.GA.jar
I have added @ValidateRequest on class(tried on method as well) to validate any request input data before processing the request but i dont know why validation in not being invoked.
@Path(value = "/events")
@ValidateRequest
public class EventRestController {
@GET
@Produces({ MediaType.APPLICATION_XML, ACCEPT_HEADER })
public Response get(@QueryParam("componentSerialNumber") @NotNull String componentSerialNumber) {
System.out.println("powerChangeEvevnt.getComponentSerialNumber() " + componentSerialNumber);
return Response.ok().build();
}
}
我不知道我错过了什么。 请建议。
打开 Rest 资源和提供者的自动扫描解决了这个问题,验证开始工作。
只需在 web.xml
中将 resteasy.scan 参数值设置为 true我已经在扩展 javax.ws.rs.Application class 的子 class 中显式注册了所有资源,但它没有考虑将 HibernateValidator 作为验证器。我发现将 HibernateValidator 注册为验证器非常复杂,所以只是删除了这个显式注册的配置 class 并启用了自动扫描。