0

我正在尝试将我在 JBoss-4.0.4.GA 环境中的 jar 部署到 JBoss-6.0.0.Final 环境中。我遇到了一个我不确定的问题。启动 JBoss 时出现此错误:

17:45:27,719 INFO  [EjbDeployer] installing bean: ejb/#MyMessageBean,uid33175643
17:45:27,719 INFO  [EjbDeployer]   with dependencies:
17:45:27,719 INFO  [EjbDeployer]   and supplies:
17:45:27,738 INFO  [EjbDeployer]        jndi:null
17:45:27,796 INFO  [EjbModule] Deploying MyMessageBean
17:45:27,918 ERROR [AbstractKernelController] Error installing to Create: name=jboss.j2ee:jndiName=local/MyMessageBean@16788767,service=EJB state=Configured mode=Manual requiredState=Create: java.lang.UnsupportedOperationException: Message driven beans are not bound into remote jndi

我们正在使用 ejb 2.1。

我想我的部署描述符中有一些东西是 JBoss 4.0.4 可以容忍的,而 JBoss 6 则不能那么容忍。

META-INF/ejb-jar.xml

<message-driven>
    <description></description>
    <display-name>My Message Bean</display-name>
    <ejb-name>MyMessageBean</ejb-name>
    <ejb-class>com.myplace.MyMessageBean</ejb-class>
    <transaction-type>Container</transaction-type>
    <acknowledge-mode>Auto-acknowledge</acknowledge-mode>
    <message-driven-destination>
        <destination-type>javax.jms.Topic</destination-type>
        <subscription-durability>NonDurable</subscription-durability>
    </message-driven-destination>
</message-driven>

和 META-INF/jboss.xml:

<enterprise-beans>
    <message-driven>
        <ejb-name>MyMessageBean</ejb-name>
        <destination-jndi-name>topic/MyTopic</destination-jndi-name>
        <configuration-name>My Message Driven Bean Container Configuration</configuration-name>
    </message-driven>
</enterprise-beans>

我的部署描述符是由 xdoclet 生成的。

非常感谢您的帮助。

4

1 回答 1

1

这个解决方案很奇怪——我从容器定义中删除了 MetricsInterceptor。报告的错误似乎与修复无关,但正是它造成了不同。希望这对其他人有帮助。

于 2013-03-26T17:35:57.243 回答