SpringBoot и ProtoBuf: как сделать HTTP 400 более полезным, добавив ошибку в тело ответа? - PullRequest
1 голос
/ 20 марта 2020

Мы используем ProtobufJsonFormatHttpMessageConverter для анализа JSON тела запроса к протосам в наших конечных точках REST:

  @Bean
  ProtobufHttpMessageConverter protobufHttpMessageConverter() {
    return new ProtobufJsonFormatHttpMessageConverter(
        JsonFormat.parser(), JsonFormat.printer().includingDefaultValueFields());
  }

В запросе, скажем, есть enum, и если в опечатке есть опечатка значение, например,

{
     "type": "ELEPHAANT"
}

Я получаю ответ HTTP 400 с пустым телом, и консоль имеет:

DEBUG o.s.w.s.DispatcherServlet - POST "/foo-search", parameters={}
DEBUG o.s.w.s.m.m.a.RequestMappingHandlerMapping - Mapped to com.foobar.MasterController#sample(SampleRequest)
DEBUG o.s.w.s.m.m.a.ServletInvocableHandlerMethod - Could not resolve parameter [0] in public com.foobar.models.ResponseOuterClass$SampleResponse com.foobar.MasterController.Sample(com.foobar.models.SampleRequestOuterClass$SampleRequest): I/O error while reading input message; nested exception is com.google.protobuf.InvalidProtocolBufferException: Invalid enum value: ELEPHAANT for enum type: SampleRequest.Filter.Type
DEBUG o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Using @ExceptionHandler com.foobar.advice.ExceptionHandlerAdvice#handleException(Exception, WebRequest)
DEBUG o.s.w.s.m.m.a.HttpEntityMethodProcessor - No match for [*/*], supported: []
DEBUG o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Resolved [org.springframework.http.converter.HttpMessageNotReadableException: I/O error while reading input message; nested exception is com.google.protobuf.InvalidProtocolBufferException: Invalid enum value: ELEPHAANT for enum type: ObtSampleRequest.Filter.Type]
DEBUG o.s.w.s.DispatcherServlet - Completed 400 BAD_REQUEST

Проблема ясна в журнале консоли:

Invalid enum value: ELEPHAANT for enum type: ObtSampleRequest.Filter.Type

Можно ли как-нибудь сделать тело ответа более полезным, включив приведенную выше информацию?

1 Ответ

0 голосов
/ 20 марта 2020

Вы можете придумать @ RestControllerAdvice

@RestControllerAdvice
public class MyAdvice {

    @ExceptionHandler(HttpMessageNotReadableException.class)
    @ResponseStatus(HttpStatus.BAD_REQUEST)
    public String handle(HttpMessageNotReadableException e) {
       return e.getMessage(); // or return a nice error object with the nested exception's msg
  }

}
...