出站消息转换
Spring AMQP 1.4 引入了ContentTypeDelegatingMessageConverter
,其中实际的转换器是根据传入的 content type 消息属性选择的。这可以被入站端点使用。
从 Spring Integration 4.3 版本开始,你也可以在出站端点上使用ContentTypeDelegatingMessageConverter
,使用contentType
头指定使用哪个转换器。
下面的示例配置了一个ContentTypeDelegatingMessageConverter
,默认转换器为SimpleMessageConverter
(处理 Java 序列化和纯文本),以及一个 JSON 转换器。
<amqp:outbound-channel-adapter id="withContentTypeConverter" channel="ctRequestChannel"
exchange-name="someExchange"
routing-key="someKey"
amqp-template="amqpTemplateContentTypeConverter" />
<int:channel id="ctRequestChannel"/>
<rabbit:template id="amqpTemplateContentTypeConverter"
connection-factory="connectionFactory" message-converter="ctConverter" />
<bean id="ctConverter"
class="o.s.amqp.support.converter.ContentTypeDelegatingMessageConverter">
<property name="delegates">
<map>
<entry key="application/json">
<bean class="o.s.amqp.support.converter.Jackson2JsonMessageConverter" />
</entry>
</map>
</property>
</bean>
向ctRequestChannel
发送消息,并将contentType
头设置为application/json
,将导致选择 JSON 转换器。
这适用于出站通道适配器和网关。
从 5.0 版本开始,添加到出站消息 但是,在某些情况下需要之前的行为——例如,当包含 JSON 的 现在,出站通道适配器和网关(以及基于 AMQP 的通道)上有一个名为 从 5.1.9 版本开始,当我们生成回复并希望覆盖转换器填充的头信息时,为 |