我需要帮助处理错误的弹簧。
客户端服务正在发送接受两种不同内容类型的请求 - binary和json。当一切正常时,我更喜欢用二进制编码与我的服务器通信以节省带宽。但是出错时我想将ResponseEntity串行化为json,因为我的二进制序列化器不知道如何将它序列化为二进制格式,而且它更适合日志记录等。
我配置了ResponseEntityExceptionHandler的实例,我正在处理该实现的不同异常。但是春天总是选择二进制格式,因为它首先在接受(或产生)列表上。
我得到的是(因为spring不知道如何将ResponseEntity序列化为我的自定义二进制格式。请参阅AbstractMessageConverterMethodProcessor#writeWithMessageConverters)
org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
客户端发送
headers {Accept: [application/custom-binary, application/json]
服务器的控制器配置为
// pseudo code
@RequestMapping(method = GET, produces = {"application/custom-binary", APPLICATION_JSON_VALUE})
public BannerMetaCollection get(@RequestParam(value = "q") UUID[] q) {
if (q != null) {
return service.getAllDataWith(q);
} else {
throw new IllegalArgumentException("invalid data");
}
}
// pseudo code
public class RestExceptionResolverSupport extends ResponseEntityExceptionHandler {
@ExceptionHandler
public ResponseEntity<Object> illegalArgumentException(IllegalArgumentException ex, WebRequest request {
Object body = errorResponse()
.withCode(BAD_REQUEST)
.withDescription("Request sent is invalid")
.withMessage(ex.getMessage())
.build());
return new ResponseEntity<Object>(body, new HttpHeaders(), HttpStatus.BAD_REQUEST);
}
}
任何提示?
答案 0 :(得分:1)
我要做的是让let我的端点方法返回ResponseEntity
并且我没有声明@RequestMapping
注释中产生了什么内容。然后我在返回响应之前自己设置Content-type标头,例如
// pseudo code
@RequestMapping(method = GET)
public ResponseEntity<BannerMetaCollection> get(@RequestParam(value = "q") UUID[] q) {
if (q != null) {
HttpHeaders headers = new HttpHeaders();
headers.add(HttpHeaders.CONTENT_TYPE, "application/custom-binary");
return new ResponseEntity<>(service.getAllDataWith(q),
headers,
HttpStatus.OK);
} else {
throw new IllegalArgumentException("invalid data");
}
}