MyCustomExceptionMapper未调用 - 自定义验证错误消息 - Jersey验证

时间:2016-09-21 14:09:36

标签: java validation jackson jersey-2.0 dropwizard

我想创建自己的自定义验证错误消息。我搜索了很多论坛,但我不确定我哪里出错了。

@Provider
public class ConstraintViolationExceptionMapper implements ExceptionMapper<ValidationException>{
private String field;
private String code;
private String message;

public ConstraintViolationExceptionMapper(){
}

@Override
public Response toResponse(ValidationException e) {
    message = e.getMessage();
    InvalidRespose invalidRespose = new InvalidRespose(code, message, field);
    return Response.status(400).entity(invalidRespose).type(MediaType.APPLICATION_JSON).build();
}
}

资源类

@POST
@Path("/increment")
@Consumes(MediaType.APPLICATION_JSON)
@Timed
public Response greetings(@Valid @NotNull @Pattern(regexp = "^[1-9]\\d*$", message = "Should be a positive Number") @PathParam("id") String account_id){

    ...
    ...
}

我在我的Applicationclass中注册了我的ExceptionMapper

environment.jersey().register(new ConstraintViolationExceptionMapper());

我不确定我哪里出错了。

1 个答案:

答案 0 :(得分:1)

我必须先禁用Dropwizard的默认Mappers才能注册我自己的。

((DefaultServerFactory)rateLimitConfiguration.getServerFactory()).setRegisterDefaultExceptionMappers(false);

参考链接here