Weblogic找不到正确JNDI名称绑定的资源适配器。

5

我正在尝试将我的消息驱动bean与Oracle JCA文件适配器(包含在SOA套件中)绑定到Weblogic 10.3.5上,以便我的MDB可以在任何.txt文件移动到特定目录时得到通知。

启动支持SOA功能的Weblogic域后,文件适配器会自动部署。在Weblogic控制台上,我可以看到文件适配器被部署为“资源适配器”,健康状况为“正常”,状态为“活动”,如下所示:

Deployed File Adapter in Weblogic

我还运行了文件适配器的测试,它们全部通过了:

enter image description here

因此,我认为文件适配器已经正确部署并且应该是可用的。

然后我的消息驱动bean代码如下:

import java.util.logging.Logger;
import javax.ejb.MessageDriven;
import javax.resource.ResourceException;
import javax.resource.cci.MessageListener;
import javax.resource.cci.Record;

@MessageDriven
public class FileAdapterClientMDB implements MessageListener {

    private Logger logger = Logger.getLogger(FileAdapterClientMDB.class.getName());

    public FileAdapterClientMDB() {

    }

    @Override
    public Record onMessage(Record record) throws ResourceException {
        logger.info("Received record: " + record);
        return record;
    }
}

这是我 ejb-jar.xml 文件的内容:
<?xml version="1.0" encoding="UTF-8"?>
<ejb-jar xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:ejb="http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd" version="3.0">
  <display-name>MockEJB</display-name>
  <enterprise-beans>
    <message-driven>
      <description>EMessage Driven Bean as File Adapter Client</description>
      <display-name>FileAdapterClientMDB</display-name>
      <ejb-name>FileAdapterClientMDB</ejb-name>
      <ejb-class>com.test.FileAdapterClientMDB</ejb-class>
      <messaging-type>javax.resource.cci.MessageListener</messaging-type>
      <transaction-type>Container</transaction-type>
      <activation-config>
        <activation-config-property>
          <activation-config-property-name>physicalDirectory</activation-config-property-name>
          <activation-config-property-value>C:\dataDir</activation-config-property-value>
        </activation-config-property>
        <activation-config-property>
          <activation-config-property-name>deleteFile</activation-config-property-name>
          <activation-config-property-value>true</activation-config-property-value>
        </activation-config-property>
        <activation-config-property>
          <activation-config-property-name>pollingFrequency</activation-config-property-name>
          <activation-config-property-value>10</activation-config-property-value>
        </activation-config-property>
        <activation-config-property>
          <activation-config-property-name>includeFiles</activation-config-property-name>
          <activation-config-property-value>.*\.txt</activation-config-property-value>
        </activation-config-property>
        <activation-config-property>
          <activation-config-property-name>minimumAge</activation-config-property-name>
          <activation-config-property-value>0</activation-config-property-value>
        </activation-config-property>
      </activation-config>
    </message-driven>
  </enterprise-beans>
</ejb-jar>

以下是我的 weblogic-ejb-jar.xml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<wls:weblogic-ejb-jar xmlns:wls="http://www.bea.com/ns/weblogic/weblogic-ejb-jar" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd http://www.bea.com/ns/weblogic/weblogic-ejb-jar http://www.bea.com/ns/weblogic/weblogic-ejb-jar/1.0/weblogic-ejb-jar.xsd">
    <!--weblogic-version:10.3-->
    <wls:weblogic-enterprise-bean>
        <!--options:RESOURCE_ADAPTER_JNDI-->
        <wls:ejb-name>FileAdapterClientMDB</wls:ejb-name>
        <wls:message-driven-descriptor>
            <wls:resource-adapter-jndi-name>eis/FileAdapter</wls:resource-adapter-jndi-name>
        </wls:message-driven-descriptor>
        <wls:jndi-name>FileAdapterClientMDB</wls:jndi-name>
        <wls:local-jndi-name>FileAdapterClientMDB</wls:local-jndi-name>
    </wls:weblogic-enterprise-bean>
</wls:weblogic-ejb-jar>

在部署 EAR 项目时,我收到了以下信息:
<20.4.2012 22:42:11 CEST> <Warning> <EJB> <BEA-010221> <The Message-Driven EJB: 
FileAdapterClientMDB is unable to bind to the JCA resource adapter: eis/FileAdapter. 
The Error was: No deployed ResourceAdapter with adapter JNDI name = 'eis/FileAdapter' was found.>

我不知道为什么Weblogic会抱怨这个问题,因为“eis/FileAdapter” JNDI名称在适配器的官方用户指南中有提到。此外,我可以在Weblogic的JNDI树中看到它:

enter image description here

更重要的是,当我在测试web服务中运行以下代码时:

try {
    final Context context = new InitialContext();
    final Object obj = context.lookup("eis/FileAdapter");
    System.out.println("eis/FileAdapter => " + obj);
} catch (NamingException e) {
    e.printStackTrace();
}

它输出了 "eis/FileAdapter => oracle.tip.adapter.file.FileConnectionFactory@ff51dc",这意味着JNDI名称是正确的!
所以我的问题是,为什么Weblogic找不到绑定"正确" JNDI 名称的资源适配器? 有人能给我一些解决方法吗?

吹毛求疵:您尝试将weblogic-ejb-jar.xml的标签值更改为eis.FileAdapter了吗? - Viccari
1个回答

0
只要您没有看到这个警告重复出现,就没有什么可担心的。它只是显示在部署顺序中,当 MDB 被部署时,它无法获取适配器。请注意,MDB 每 5 秒尝试连接一次,因此如果警告继续填充日志,则意味着 MDB 无法获取适配器,这意味着它不起作用。如果您只看到了一次警告,则可以安全地忽略它或更改部署顺序并稍后推送 MDB。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接