我有一个带有外部ActiveMQ的wildfly 15,并使用了一个资源适配器。但是我无法连接到要写的队列。
但是我可以在队列中听。
这是我的配置:
ironjacamar.xml:
<admin-objects>
<admin-object class-name="org.apache.activemq.command.ActiveMQQueue"
jndi-name="java:jboss/activemq/queue/HELLOWORLDMDBQueue1234">
<config-property name="PhysicalName">
activemq/queue/HELLOWORLDMDBQueue
</config-property>
</admin-object>
</admin-objects>
ra.xml:
<adminobject>
<adminobject-interface>javax.jms.Queue</adminobject-interface>
<adminobject-class>org.apache.activemq.command.ActiveMQQueue</adminobject-class>
<config-property>
<config-property-name>PhysicalName</config-property-name>
<config-property-type>java.lang.String</config-property-type>
</config-property>
</adminobject>
Bean.java:
@Resource(lookup = "java:jboss/activemq/queue/HELLOWORLDMDBQueue1234")
private Queue queue;
@Inject
private JMSContext context;
someFunction(){
context.createProducer().send(queue, "hier ist eine nachricht");
}
我的侦听器bean:
@ResourceAdapter("activemq.rar")
@MessageDriven(activationConfig = {
@ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
@ActivationConfigProperty(propertyName = "destination", propertyValue = "activemq/queue/HELLOWORLDMDBQueue") })
public class RemoteActiveMQConsumer implements MessageListener {
@Override
public void onMessage(Message msg) {
if (msg instanceof TextMessage) {
try {
final String text = ((TextMessage) msg).getText();
System.out.println(text);
} catch (final JMSException e) {
throw new RuntimeException(e);
}
} else {
System.out.println(msg);
}
}
}
豆的pom.xml包含:
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-client</artifactId>
<version>5.9.1</version>
<scope>provided</scope>
</dependency>
这与资源适配器中的jar版本相同。
从HELLOWORLDMDBQueue
读取不是问题,但是如果我尝试发送,则会得到以下输出:
错误:
Caused by: javax.jms.InvalidDestinationException: Foreign destination:queue://activemq/queue/HELLOWORLDMDBQueue
at org.apache.activemq.artemis.jms.client.ActiveMQMessageProducer.checkDestination(ActiveMQMessageProducer.java:349)
at org.apache.activemq.artemis.jms.client.ActiveMQMessageProducer.send(ActiveMQMessageProducer.java:217)
at org.apache.activemq.artemis.jms.client.ActiveMQMessageProducer.send(ActiveMQMessageProducer.java:206)
at org.apache.activemq.artemis.ra.ActiveMQRAMessageProducer.send(ActiveMQRAMessageProducer.java:142)
at org.apache.activemq.artemis.jms.client.ActiveMQJMSProducer.send(ActiveMQJMSProducer.java:98)
感谢您的帮助
答案 0 :(得分:1)
类似于your other question on this subject,似乎您正在尝试使用ActiveMQ 5.x JCA资源适配器中的管理对象来配置JMS队列管理对象,但是随后您使用的是ActiveMQ Artemis客户端与该队列一起工作。 ActiveMQ 5.x和ActiveMQ Artemis是完全不同的客户端/服务器实现。您不能那样混合它们。
您不需要配置与ActiveMQ 5.x JCA资源适配器相关的任何内容。只需在Wildfly的messaging
子系统中定义队列,然后创建指向远程代理的连接工厂即可。