无法在 JBoss 6.1.0 中使用资源注释注入 JMS QueueConnectionFactory

发布于 2025-01-04 03:29:17 字数 941 浏览 1 评论 0原文

我花了很多时间来解决 JBoss 6.1.0 在我的会话 bean 中注入 JMS 连接工厂的问题。我使用带有默认配置文件的 JBoss 6.1.0 并在 debian 中运行它。

我的代码片段是:

@Resource(name="java:/QueueConnectionFactory")
private QueueConnectionFactory factory

jboss6/server/default/deploy/hornetq/hornetq-jms.xml 中有:

<connection-factory name="QueueConnectionFactory" signature="queue">
        <xa>true</xa>
        <connectors>
           <connector-ref connector-name="in-vm"/>
        </connectors>
        <entries>
            <entry name="java:/QueueConnectionFactory"/>           
        </entries>
    </connection-factory>

在部署我的耳朵文件时,我收到此错误:

指定的任何mapped-name/lookup/jndi-name和任何ResourceProvider都无法处理名为env/java:/QueueConnectionFactory且类型为javax.jms.QueueConnectionFactory的资源引用

它无法在我的会话 bean 中注入队列连接工厂,尽管有队列工厂在管理控制台中可见。

I was spending a lot time to sort out problem with JBoss 6.1.0 to inject JMS connection factory in my session bean. I am using JBoss 6.1.0 with default profile and running it in debian.

Snip of my code are:

@Resource(name="java:/QueueConnectionFactory")
private QueueConnectionFactory factory

There is in jboss6/server/default/deploy/hornetq/hornetq-jms.xml:

<connection-factory name="QueueConnectionFactory" signature="queue">
        <xa>true</xa>
        <connectors>
           <connector-ref connector-name="in-vm"/>
        </connectors>
        <entries>
            <entry name="java:/QueueConnectionFactory"/>           
        </entries>
    </connection-factory>

While deploying my ear-file I am getting this error:

Neither any mapped-name/lookup/jndi-name specified nor any ResourceProvider could process resource-ref named env/java:/QueueConnectionFactory of type javax.jms.QueueConnectionFactory

It can't inject queue connection factory in my session bean despite of the queue factory being visible in the admin console.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尴尬癌患者 2025-01-11 03:29:17

最后,我找到了问题的答案:

@Resource 注释中,还需要具有真实 JNDI 资源名称的 mappedName 属性。

Finally I have found the answer to my question:

In the @Resource annotation the mappedName attribute with the real JNDI resource name is required as well.

秋日私语 2025-01-11 03:29:17

这是一个可以生成 JMS 的简单 MDB,它可以在 JBoss 6.1.0 中工作

工作代码如下: https ://github.com/OpenRAP/jboss6-jms-chat

@MessageDriven(activationConfig = {
@ActivationConfigProperty(
        propertyName = "destinationType",
        propertyValue = "javax.jms.Queue"),
@ActivationConfigProperty(
        propertyName = "destination",
        propertyValue = "queue/questionqueue"),
@ActivationConfigProperty(propertyName = "subscriptionDurability", propertyValue = "durable")})
public class ChatBean implements MessageListener {

@Resource(mappedName = "java:/JmsXA")
private ConnectionFactory queueConnectionFactory;

@Resource(mappedName = "queue/answerqueue")
private Queue answerQueue;

public void onMessage(Message message) {}
}

Here is a simple MDB that can produce a JMS and it works in JBoss 6.1.0

Working code here : https://github.com/OpenRAP/jboss6-jms-chat

@MessageDriven(activationConfig = {
@ActivationConfigProperty(
        propertyName = "destinationType",
        propertyValue = "javax.jms.Queue"),
@ActivationConfigProperty(
        propertyName = "destination",
        propertyValue = "queue/questionqueue"),
@ActivationConfigProperty(propertyName = "subscriptionDurability", propertyValue = "durable")})
public class ChatBean implements MessageListener {

@Resource(mappedName = "java:/JmsXA")
private ConnectionFactory queueConnectionFactory;

@Resource(mappedName = "queue/answerqueue")
private Queue answerQueue;

public void onMessage(Message message) {}
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文