我使用 weblogic 10.3.6 和 EJB 3.0 做了一个小例子。定义 SimpleService 类,定义 weblogic-ejb-jar.xml 以便将 SimpleService 类映射到 JNDI 名称,将其打包为 EAR 文件中的 EJB 组件并部署在服务器上。部署成功,我可以看到名为 SimpleServiceBean 的 ejb bean。之后,使用具有所有必要环境属性的独立应用程序通过 InitialContext 连接到 weblogc 服务器,我尝试查找该 bean。我假设它将在名称 ejb/SimpleService 下可用,但在该名称下找不到它,只有在查看 JNDI 树名称后,我才发现它在名称 SimpleService#ds/base/ejb/SimpleService 下可用。帮助我了解发生了什么?我应该如何配置 ejb bean,以便它在 ejb/SimpleService 下可用,如官方 weblogic 手册中所述?或者它可能是 EJB bean 的正确 JNDI 名称?
我的课程和配置是:
ds.base.ejb.SimpleServiceBean:
@Stateless(mappedName = "ServiceBean")
@TransactionAttribute(NEVER)
@ExcludeDefaultInterceptors
@Remote(SimpleService.class)
public class SimpleServiceBean implements SimpleService {
...
}
weblogic-ejb-jar.xml
<weblogic-ejb-jar>
<weblogic-enterprise-bean>
<ejb-name>ServiceBean</ejb-name>
<jndi-name>ejb/ServiceBean</jndi-name>
<enable-call-by-reference>True</enable-call-by-reference>
</weblogic-enterprise-bean>
</weblogic-ejb-jar>
应用程序.xml:
<application>
<display-name>web-app-ear</display-name>
<module>
<ejb>app-ejb-1.0-SNAPSHOT.jar</ejb>
</module>
</application>
然后尝试从独立获取它:
InitialContext context = new InitialContext(env);
SimpleService simpleService = (SimpleService)
context.lookup("SimpleService#ds/base/ejb/SimpleService");
assert simpleService != null