我想在 Spring-JMS 中使用 activeMQ 实现一个解决方案,我想在其中创建对主题的持久订阅。目的是,如果订阅者关闭订阅一段时间并再次使用相同的客户端 ID 和订阅名称重新创建持久订阅,订阅者应该收到在订阅关闭期间传递的所有消息。
我想为持久订阅实现 ORACLE URL 中提到的以下逻辑:https ://docs.oracle.com/cd/E19798-01/821-1841/bncgd/index.html
但我无法使用 spring-jms 执行此操作。根据 URL,我需要获取 messageConsumer 实例并在该方法上调用 close() 以暂时停止从主题接收消息。但我不确定如何获得它。
以下是我的配置。请让我知道如何修改配置以执行此操作。
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:jms="http://www.springframework.org/schema/jms"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms.xsd">
<bean id="connectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory"
p:userName="admin"
p:password="admin"
p:brokerURL="tcp://127.0.0.1:61616"
primary="true"
></bean>
<bean id="jmsContainer" class="org.springframework.jms.listener.DefaultMessageListenerContainer" p:durableSubscriptionName="gxaa-durable1" p:clientId="gxaa-client1">
<property name="connectionFactory" ref="connectionFactory"/>
<property name="destination" ref="adiTopic"/>
<property name="messageListener" ref="adiListener"/>
</bean>
<bean id="configTemplate" class="org.springframework.jms.core.JmsTemplate"
p:connectionFactory-ref="connectionFactory"
p:defaultDestination-ref="adiTopic" primary="true"
p:pubSubDomain="true">
</bean>
<bean id="adiTopic" class="org.apache.activemq.command.ActiveMQTopic" p:physicalName="gcaa.adi.topic"></bean>
<bean id="adiListener" class="com.gcaa.asset.manager.impl.AdiListener"></bean>