我有一个示例CRUD应用程序,使用的应用程序是Wine Cellar应用程序。您可以搜索葡萄酒,在酒窖中添加葡萄酒,更新和删除葡萄酒。我是从RESTful services with jQuery and Java using JAX-RS and Jersey得到的。
我修改了Wine类以包含验证约束。
@NotNull(message='Name must have a value')
private String name;
@NotNull(message='Grapes must have a value')
private String grapes;
如果用户创建/更新,如果名称和葡萄字段为空,则会抛出错误。我的所有验证消息都以json格式返回给浏览器。
public Wine create(Wine wine) {...}
public Wine update(Wine wine) {...}
如果只抛出一个错误,我想向用户显示正确的消息,并突出显示该字段。
如何获取触发错误的空字段(名称或ID)以及正确的验证消息?
答案 0 :(得分:0)
对于不一致或不明确感到抱歉。
我使用Web Application Exception Mapper来处理异常。它检查错误是否是从Web应用程序异常或约束违例异常生成的。
if (exception instanceof ConstraintViolationException) {
Set<ErrorResponse> errorResponses = new HashSet<>();
for (ConstraintViolation violation : ((ConstraintViolationException) exception).getConstraintViolations()) {
errorResponses.add(new ErrorResponse(violation.getPropertyPath().toString(),violation.getMessage()));
}
builder.entity(new WebApplicationError(errorResponses));
}
另外,我检查了是否是JsonMapping异常
if (exception instanceof JsonMappingException) {
ResourceBundle bundle = ResourceBundle.getBundle("ValidationMessages");
Set<ErrorResponse> errorResponses = new HashSet<>();
for(Reference ref : ((JsonMappingException) exception).getPath()) {
String className = ref.getFrom().getClass().getName()
.substring(ref.getFrom().getClass().getName()
.lastIndexOf(".") + 1).toLowerCase();
String key = "the.key";
try {
message = bundle.getString(key);
} catch (MissingResourceException e) {
logger.error(e.getMessage());
}
errorResponses.add(new ErrorResponse(ref.getFieldName(), message));
}
builder.entity(new WebApplicationError(errorResponses));
}