5

我正在使用 JBoss-7.1 和 RESTEasy 开发一个简单的 RESTFul 服务。我有一个名为 CustomerService 的 REST 服务,如下所示:

@Path(value="/customers")
@ValidateRequest
class CustomerService
{
  @Path(value="/{id}")
  @GET
  @Produces(MediaType.APPLICATION_XML)
  public Customer getCustomer(@PathParam("id") @Min(value=1) Integer id) 
  {
    Customer customer = null;
    try {
        customer = dao.getCustomer(id);
    } catch (Exception e) {
        e.printStackTrace();
    }
    return customer;
    }
}

在这里,当我点击 url http://localhost:8080/SomeApp/customers/-1时,@Min 约束将失败并在屏幕上显示堆栈跟踪。

有没有办法捕捉这些验证错误,以便我可以准备带有正确错误消息的 xml 响应并显示给用户?

4

1 回答 1

10

您应该使用异常映射器。例子:

@Provider
public class ValidationExceptionMapper implements ExceptionMapper<javax.validation.ConstraintViolationException> {

    public Response toResponse(javax.validation.ConstraintViolationException cex) {
       Error error = new Error();
       error.setMessage("Whatever message you want to send to user. " + cex);
       return Response.entity(error).status(400).build(); //400 - bad request seems to be good choice
    }
}

其中错误可能类似于:

@XmlRootElement
public class Error{
   private String message;
   //getter and setter for message field
}

然后你会得到包装到 XML 中的错误消息。

于 2012-05-09T21:28:33.857 回答