使用Spring集成使用jms:inbound-channel-adapter将自定义确认消息发送给发件人

问题描述

一旦消费者队列客户端使用jms入站通道适配器接收到生产者队列客户端,我就希望将服装消息作为(已接收消息)发送给生产者队列客户端。需要帮助,以了解如何使用xml配置实现此方法或任何其他替代方法

XML文件

    <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:int="http://www.springframework.org/schema/integration"
    xmlns:jms="http://www.springframework.org/schema/integration/jms"
    xmlns:int-file="http://www.springframework.org/schema/integration/file"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:int-xml="http://www.springframework.org/schema/integration/xml"
    xmlns:int-jdbc="http://www.springframework.org/schema/integration/jdbc" 
    xmlns:task="http://www.springframework.org/schema/task"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/integration/file http://www.springframework.org/schema/integration/file/spring-integration-file.xsd
        http://www.springframework.org/schema/integration/xml http://www.springframework.org/schema/integration/xml/spring-integration-xml.xsd
        http://www.springframework.org/schema/integration/jdbc http://www.springframework.org/schema/integration/jdbc/spring-integration-jdbc.xsd   
        http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd
        http://www.springframework.org/schema/integration/jms http://www.springframework.org/schema/integration/jms/spring-integration-jms.xsd">
        
    <context:component-scan base-package="com.fcb.incoming.wires" />
    
    <context:property-placeholder
        location="classpath:application-default.properties,classpath:application-${spring.profiles.active}.properties"
        ignore-unresolvable="true" />   
        
    <int:poller default="true" fixed-delay="${fcb.queue.poller.fixeddelay}"/>   
    
    <int:channel id="incomingWireChannel">
        <int:queue />
    </int:channel>
    <int:channel id="interWireChannel">
       <int:queue />
    </int:channel>
   <int:channel id="verifyWireChannel">
       <int:queue />
    </int:channel>   
     
     
     <jms:inbound-channel-adapter
        channel="incomingWireChannel" connection-factory="${fcb.queue.mq.connection.factory}"
        destination-name="${fcb.incoming.wires.req.queue}" ackNowledge="client">
        <int:poller fixed-delay="${fcb.queue.poller.fixeddelay}" />
    </jms:inbound-channel-adapter> 
    
    <int:router input-channel="incomingWireChannel" ref="msgValidator" method="validate"  />    
    
    <bean id="msgValidator" class="com.fcb.incoming.wires.validate.MessageValidator">       
    </bean>

解决方法

使用outbound channel adapterinbound gateway

Spring Integration的消息驱动JMS入站网关委托给MessageListener容器,支持动态调整并发使用者,还可以处理答复。