JAX-RS和EJB异常处理

时间:2011-07-30 21:08:00

标签: java exception-handling ejb jax-rs

我在RESTful服务中处理异常时遇到了问题:

@Path("/blah")
@Stateless
public class BlahResource {
    @EJB BlahService blahService;

    @GET
    public Response getBlah() {
        try {
            Blah blah = blahService.getBlah();
            SomeUtil.doSomething();
            return blah;
        } catch (Exception e) {
            throw new RestException(e.getMessage(), "unknown reason", Response.Status.INTERNAL_SERVER_ERROR);
        }
    }
}

RestException是一个映射异常:

public class RestException extends RuntimeException {
    private static final long serialVersionUID = 1L;
    private String reason;
    private Status status;

    public RestException(String message, String reason, Status status) {
        super(message);
        this.reason = reason;
        this.status = status;
    }
}

这是RestException的异常映射器:

@Provider
public class RestExceptionMapper implements ExceptionMapper<RestException> {

    public Response toResponse(RestException e) {
        return Response.status(e.getStatus())
            .entity(getExceptionString(e.getMessage(), e.getReason()))
            .type("application/json")
            .build();
    }

    public String getExceptionString(String message, String reason) {
        JSONObject json = new JSONObject();
        try {
            json.put("error", message);
            json.put("reason", reason);
        } catch (JSONException je) {}
        return json.toString();
    }

}

现在,对我来说,向最终用户提供响应代码和一些响应文本非常重要。但是,当抛出RestException时,这会导致EJBException(带有消息“EJB抛出一个意外的(未声明的)异常......”)也被抛出,并且servlet只将响应代码返回给客户端(和不是我在RestException中设置的响应文本。

当我的RESTful资源不是EJB时,这是完美无缺的......任何想法?我已经花了几个小时研究这个问题,而且我完全没有想法。

谢谢!

2 个答案:

答案 0 :(得分:6)

问题似乎与EJB异常处理有关。根据规范,从托管bean中抛出的任何system exception(即 - 任何未明确标记为Application Exception的RuntimeException)将被打包到EJBException中,然后在需要时将其打包到抛出到客户端的RemoteException中。这是你似乎处于的一种情况,为了避免你可以:

  • 将RestException更改为已检查的异常并按此处理
  • 在RestException上使用@ApplicationException注释
  • 创建EJBExceptionMapper并从(RestfulException) e.getCause()
  • 中提取所需的信息

答案 1 :(得分:0)

当RestException扩展javax.ws.rs.WebApplicationException时,类似的情况对我有用