覆盖DropWizard ConstraintViolation消息

时间:2015-03-02 10:01:16

标签: java jax-rs dropwizard

所以我想通过DropWizard资源更改用于验证模型的验证消息。

我正在使用java bean验证注释。例如,这里是我要验证的字段之一:

@NotEmpty(message = "Password must not be empty.")

我可以使用验证器按预期测试它。

然而,当我使用DropWizard对资源进行验证时,它会为该消息添加一些额外的东西。我看到的就是这个 - password Password must not be empty. (was null)我已经找到了执行此操作的代码 - https://github.com/dropwizard/dropwizard/blob/master/dropwizard-validation/src/main/java/io/dropwizard/validation/ConstraintViolations.java

特别是这种方法 -

public static <T> String format(ConstraintViolation<T> v) {
    if (v.getConstraintDescriptor().getAnnotation() instanceof ValidationMethod) {
        final ImmutableList<Path.Node> nodes = ImmutableList.copyOf(v.getPropertyPath());
        final ImmutableList<Path.Node> usefulNodes = nodes.subList(0, nodes.size() - 1);
        final String msg = v.getMessage().startsWith(".") ? "%s%s" : "%s %s";
        return String.format(msg,
                             Joiner.on('.').join(usefulNodes),
                             v.getMessage()).trim();
    } else {
        return String.format("%s %s (was %s)",
                             v.getPropertyPath(),
                             v.getMessage(),
                             v.getInvalidValue());
    }
}

有什么办法可以覆盖这种行为吗?我只想显示我在注释中设置的消息......

3 个答案:

答案 0 :(得分:7)

这是dropwizard 0.8中的程序化解决方案:

public void run(final MyConfiguration config, final Environment env) {
    AbstractServerFactory sf = (AbstractServerFactory) config.getServerFactory();
    // disable all default exception mappers
    sf.setRegisterDefaultExceptionMappers(false);
    // register your own ConstraintViolationException mapper
    env.jersey().register(MyConstraintViolationExceptionMapper.class)
    // restore other default exception mappers
    env.jersey().register(new LoggingExceptionMapper<Throwable>() {});
    env.jersey().register(new JsonProcessingExceptionMapper());
    env.jersey().register(new EarlyEofExceptionMapper());
} 

我认为它比配置文件更可靠。正如您所看到的,它还可以支持所有其他default exception mappers

答案 1 :(得分:6)

ConstraintViolationExceptionMapper是使用该方法的人。要覆盖它,您需要取消注册并注册自己的ExceptionMapper

删除异常映射器

Dropwizard 0.8

将以下内容添加到yaml文件中。请注意,它将删除dropwizard添加的所有默认异常映射器。

server:
    registerDefaultExceptionMappers: false

Dropwizard 0.7.x

environment.jersey().getResourceConfig().getSingletons().removeIf(singleton -> singleton instanceof ConstraintViolationExceptionMapper);

创建并添加自己的例外映射器

public class ConstraintViolationExceptionMapper implements ExceptionMapper<ConstraintViolationException> {

    @Override
    public Response toResponse(ConstraintViolationException exception) {
        // get the violation errors and return the response you want.
    }
}

并在您的应用程序类中添加您的异常映射器。

public void run(T configuration, Environment environment) throws Exception {
  environment.jersey().register(ConstraintViolationExceptionMapper.class);
}

答案 2 :(得分:0)

@ValidationMethod在这里应该很有用。不是吗?

http://www.dropwizard.io/0.9.0/docs/manual/validation.html

@ValidationMethod(message="Password cannot be empty")
@JsonIgnore
public boolean isPasswordProvided() {
    return false if password not provided;
}