Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在服务器上有一个提供程序来编组 MyException 如下
Response.ok(myExceptionObj, MediaType.APPLICATION_JSON).status(Response.Status.BAD_REQUEST).build();
我想知道如何实现 CXF 的 ResponseExceptionMapper 以便我可以取回异常对象。
我已经使用 ResponseExceptionMapper 为我完成了这项工作。