EJB3 Weblogic 10.3.6 JNDI查找

时间:2015-01-22 14:47:24

标签: java java-ee weblogic ejb-3.0 jndi

我收到一个javax.naming.NameNotFoundException:在尝试查找EJB3无状态会话bean时。

我有1个weblogic域,它包含两个服务器Server_1和server_2。我已经将一个EAR文件部署到server_2,该文件由EJB3部署组成。它里面有以下内容

EJB3 EAR file
----EJB3 Module Jar file
    ------Stateless session EJB3 bean 
----META-INF Folder
    -- application.xml file
----lib folder
    -------EJB3 Client jar holding containing remote  and local interface

EJB3模块jar文件包含以下内容

EJB3 JAR file
    ----package structure of EJB3 Stateless bean and bean 
    ----META-INF folder
        -----weblogic-ejb-jar.xml
        -----ejb-jar.xml. 

在服务器1上,我部署了我的EJB3 Client Jar,里面有我的远程接口。在这台服务器上我也有 部署了另一个jar文件,它将使用客户端jar的远程接口来查找ejb。

我的EJB3位于

之下
@Remote
public interface ContractorIdRemote {
    public String test();
}

@Stateless(name="ContractorIdBean", mappedName="ContractorIdBean")
public class ContractorIdBean implements ContractorIdRemote {

    public String test() {
        .........
    }
}

我的ejb-jar文件如下

<?xml version="1.0" encoding="ASCII"?>
<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>ejb</display-name>
<enterprise-beans>
     <session>
          <ejb-name>ContractorIdBean</ejb-name>
          <ejb-ref>
               <ejb-ref-name>ContractorIdBean</ejb-ref-name>
               <remote>com.ejb3.websphere.ContractorIdRemote</remote>
               <mapped-name>ContractorIdBean</mapped-name>
          </ejb-ref>
     </session>
</enterprise-beans>
</ejb-jar>

weblogic-ejb xml文件

<?xml version="1.0"?>
<!DOCTYPE weblogic-ejb-jar PUBLIC
'-//BEA Systems, Inc.//DTD WebLogic 6.0.0 EJB//EN'
'http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd'>

<weblogic-ejb-jar>


    <weblogic-enterprise-bean>
        <ejb-name>ContractorIdBean</ejb-name>
        <jndi-name>ejb/ContractorIdBean</jndi-name>
    </weblogic-enterprise-bean>



</weblogic-ejb-jar>

我的查询从调用客户端

完成如下操作
Context ctx = new InitialContext(properties);
ContractorIdRemote cRemote = (ContractorIdRemote)ctx.lookup("ejb/ContractorIdBean");
cRemote.test();

我的属性文件包含以下内容

java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory
java.naming.provider.url=t3://localhost:17001

但显然ejb / ContractorIdBean不是它的约束。我可以看到EAR已成功部署在server_2上

任何人都可以建议我应该用什么来查找ejb。我尝试了以下但是所有名称都没有发现异常

java:comp/env/ejb/ejb/ContractorIdBean
java:comp/env/ejb/ContractorIdBean

提前致谢

更新:

我将我的jndi名称改为仅仅是contractorIdBean,并且像以前一样,我可以在服务器上的jndi树中看到绑定名称ContractorIdBean#com.ejb3.websphere.ContractorIdRemote

但这仍然会引发名称未找到异常

enter image description here

再次更新:

我将jndi名称更改为上面的屏幕截图,并添加了服务器的安全凭据。在此之后,我现在得到以下异常

javax.naming.CommunicationException [Root exception is java.rmi.UnmarshalException: failed to unmarshal class java.lang.Object; nested exception is: 
    java.lang.ClassNotFoundException: com.ejb3.websphere.ContractorIdRemote]

我不确定为什么找不到这门课。我还将它包含在server_2上的已部署EAR文件以及服务器1上的ejb客户端jar中

1 个答案:

答案 0 :(得分:1)

对于远程查找(一台服务器到另一台服务器),您应该执行以下操作:

Hashtable<String, String> h = new Hashtable<String, String>();
h.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
h.put(Context.PROVIDER_URL, url);
h.put(Context.SECURITY_PRINCIPAL, username);
h.put(Context.SECURITY_CREDENTIALS, password);

InitialContext context = new InitialContext(h);
cId= (ContractorIdRemote) context.lookup("ejb/ContractorIdBean");

Weblogic不会为comp/env添加JNDI名称前缀,因此您不需要这样做。我相信它用于Tomcat。