在EJB3中如何使用JNDI获取新的Stateful Session Bean?

发布于 2024-09-01 07:00:27 字数 316 浏览 8 评论 0原文

我正在尝试使用 JNDI 在 servlet 中获取新的有状态会话 Bean(作为局部变量)。我的 doGet() 方法具有以下内容:

Bean bean = (Bean) new InitialContext().lookup("beanName");

我尝试过包含 java:comp/env,但我的所有尝试都导致了命名异常。

我尝试使用各种猜测,例如 @Stateful(name="beanName")@Stateful(mappedName= “beanName”)

I'm trying to use JNDI to obtain a new Stateful Session Bean in a servlet (as a local variable). My doGet() method has the following:

Bean bean = (Bean) new InitialContext().lookup("beanName");

I've tried including java:comp/env but all of my attempts have led to naming exceptions.

I'm attempting to bind the bean in the @Stateful annotation, using various guesses like @Stateful(name="beanName") and @Stateful(mappedName="beanName")

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

狼性发作 2024-09-08 07:00:27

我需要的是在类级别的 servlet 上使用 @EJB 注释,如下所示:

@EJB(name="beanName", beanInterface = Bean.class)

然后可以使用 @EJB 绑定的名称在服务方法中进行查找> 注释:

Bean beanInstance = (Bean) new InitialContext().lookup("java:comp/env/beanName");

除了普通的 @Stateful 注释之外,Bean 类本身不需要任何内容​​。

What I needed was to use the @EJB annotation on the servlet at the class level, as follows:

@EJB(name="beanName", beanInterface = Bean.class)

Then lookup in the service method can happen using the name bound by the @EJB annotation:

Bean beanInstance = (Bean) new InitialContext().lookup("java:comp/env/beanName");

There is no need for anything in the Bean class itself, other than the plain @Stateful annotation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文