gpt4 book ai didi

java - EJB 注入(inject)错误

转载 作者:搜寻专家 更新时间:2023-10-31 20:04:40 24 4
gpt4 key购买 nike

我有一个 EAR 文件 (JEE6),其中包含一个 ejb-jar (sample-ejb) 文件和一个 war 文件 (sample-web)。这是结构:

sample-ear
|----sample-ejb.jar
| |---TestEjb.java (@Singleton)
|
|----sample-web
|---StartupEjb.java (@Singleton,@Startup)
|---TestListener.java (@WebListener)

当我想将 TestEjb 注入(inject) StartupEjb 或 TestListener 时:

@EJB
private TestEjb testEjb;

我收到以下错误:

Glassfish :

Caused by: com.sun.enterprise.container.common.spi.util.InjectionException: Exception attempting to inject Remote ejb-ref name=com.sample.StartupEjb/testEjb,Remote 3.x interface =com.sample.TestEjb,ejb-link=null,lookup=,mappedName=,jndi-name=com.sample.TestEjb,refType=Session into class com.sample.StartupEjb: Lookup failed for 'java:comp/env/com.sample.StartupEjb/testEjb' in SerialContext[myEnv={java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl, java.naming.factory.url.pkgs=com.sun.enterprise.naming}

网络逻辑:

Caused By: weblogic.application.naming.ReferenceResolutionException: [J2EE:160200]Error resolving ejb-ref "com.sample.StartupEjb/testEjb" from module "sample-web-1.0-SNAPSHOT.war" of application "com.sample_sample-ear_ear_1.0-SNAPSHOT". The ejb-ref does not have an ejb-link and the JNDI name of the target bean has not been specified. Attempts to automatically link the ejb-ref to its target bean failed because no EJBs in the application were found to implement the "com.sample.TestEjb" interface. Link or map this ejb-ref to its target EJB and ensure the interfaces declared in the ejb-ref are correct.

Glassfish 和Weblogic 都找不到TestEjb!

顺便说一句,当我为 TestEjb 创建一个远程接口(interface)并将其用于注入(inject)时,它运行良好!但是我不想定义远程接口(interface),我想使用没有接口(interface)的 EJB。我不认为我必须为这个简单的用例定义远程接口(interface)!

您可以从这里下载源代码:https://dl.dropbox.com/sh/63hn3n9y3p5ypvi/SsG9iZIvx9/sample.zip?dl=1

这是一个使用 NetBeans 创建的简单 Maven 项目。

最佳答案

你通常必须定义一个本地接口(interface),例如。 g.

@Singleton
@Local(PublicInterface.class)
public class MyBean implements PublicInterface {
...
}

如果您明确避免此接口(interface),则必须将您的 bean 标记为@LocalBean:

@Singleton
@LocalBean
public class MyBean {
...
}

PS:代码未经测试,但应该有所帮助。

关于java - EJB 注入(inject)错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11846866/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com