我有一个Spring集成流,需要一个“routingkey”消息头。如果不存在,我想将HTTP 400响应发送回客户端。我怎样才能做到这一点?下面你将看到determineRoutingKey方法,我可以确定路由键是否作为标题传递。
@Bean
public IntegrationFlow webToRabbit(RabbitTemplate amqpTemplate)
{
return IntegrationFlows
.from
(
Http.inboundGateway("/tunnel")
.replyTimeout(Integer.valueOf(timeout))
.mappedRequestHeaders("*")
.mappedResponseHeaders("*")
)
.log()
.handle
(
Amqp.outboundGateway(amqpTemplate)
.exchangeName(exchangeName)
.routingKeyFunction(f->determineRoutingKey(f))
.mappedRequestHeaders("*")
.mappedReplyHeaders("*")
)
.log()
.bridge(null)
.get();
}
private String determineRoutingKey(Message<?> message)
{
MessageHeaders headers = message.getHeaders();
if(headers.containsKey(HEADER_ROUTINGKEY))
{
String routingKey = Objects.toString(headers.get(HEADER_ROUTINGKEY));
log.debug("Using routing key: " + routingKey);
return routingKey;
}
else
{
log.error("Headers found: " + Objects.toString(headers));
//Here I get an exception stating that MessageHeaaders is immutable
message.getHeaders().put(HttpHeaders.STATUS_CODE, HttpStatus.BAD_REQUEST);
return null;
}
}
提前感谢您的帮助。
答案 0 :(得分:0)
有一个逻辑:
private HttpStatus resolveHttpStatusFromHeaders(MessageHeaders headers) {
Object httpStatusFromHeader = headers.get(org.springframework.integration.http.HttpHeaders.STATUS_CODE);
return buildHttpStatus(httpStatusFromHeader);
}
那么,您需要的是常规(带有错误消息的字符串?)回复和适当的HttpStatus.BAD_REQUEST
作为http_statusCode
标题。
没有任何例外。
<强>更新强>
由于您处于流程的中间位置且仍然远离回复,因此您可以坚持使用该异常方法。
您需要做的是返回正确的400响应,errorChannel
上的Http.inboundGateway()
和一些简单的转换器返回带有Message
标头的HttpHeaders.STATUS_CODE
:
Http.inboundGateway("/tunnel")
.errorChannel("httpErrorFlow.input")
...
@Bean
public IntegrationFlow httpErrorFlow() {
return f -> f
.<RuntimeException, Message<?>>transform(payload -> {
if (payload.getCause() instanceof MyRoutingKeyException) {
return MessageBuilder.withPayload("Bad routing key")
.setHeader(HttpHeaders.STATUS_CODE, HttpStatus.BAD_REQUEST)
.build();
}
throw payload;
});
}
但是又一次:你不能只是抛出异常。
那是