我为我的jax-rs resteasy api生成了一个服务器存根,并通过尝试将Stuff添加到MyServiceApiServiceImpl
类来开始使用存根。我与swagger-codegen v2.3.1
合作。
为我的端点生成的代码如下:
@RequestScoped
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaResteasyServerCodegen", date = "2018-08-30T14:30:35.907+02:00")
public class RegelauswertungApiServiceImpl implements RegelauswertungApiService {
public Response regelauswertung(MatchRequest body,SecurityContext securityContext)
throws NotFoundException {
// do some magic!
return Response.ok().entity(new ApiResponseMessage(ApiResponseMessage.OK, "magic!")).build();
}
}
由于请求正文已解析为MatchRequest
对象,因此如果在反序列化过程中出现问题,它将引发未处理的异常。这发生在此函数之外,在这种情况下,我在该处所做的一切都不会被调用。
默认的异常捕获如下:
com.fasterxml.jackson.databind.JsonMappingException: Unexpected character (',' (code 44)): expected a value at [Source: (io.undertow.servlet.spec.ServletInputStreamImpl); line: 24, column: 30] at [Source: (io.undertow.servlet.spec.ServletInputStreamImpl); line: 24, column: 11] (through reference chain: com.dai.asfopt.service.web.swagger.model.MatchRequest["fahrzeuge"]->java.util.ArrayList[0]->com.dai.asfopt.service.web.swagger.model.Fahrzeug["arbeitsplatzlasten"]->java.util.ArrayList[0])
有没有一种方法可以捕获反序列化异常而无需在生成的代码中进行任何更改?
答案 0 :(得分:0)
您可以执行以下操作:https://howtodoinjava.com/resteasy/exception-handling-in-jax-rs-resteasy-with-exceptionmapper/
也许这段代码会有所帮助:
@Provider
public class GlobalExceptionHandler implements ExceptionMapper<JsonMappingException > {
@Override
public Response toResponse(JsonMappingException exception) {
return Response.status(Status.INTERNAL_SERVER_ERROR)
.entity("An error deserializing the JSON")
.type(MediaType.TEXT_PLAIN)
.build();
}
}
您需要创建一个ExceptionMapper并在那里处理该错误。 杰克逊反序列化层位于调用RegelauswertungApiServiceImpl之前,因此,您永远无法处理该RegelauswertungApiServiceImpl类内的错误。