具有更多注入 EJB 实例的无状态 EJB

发布于 2024-12-02 04:30:13 字数 442 浏览 3 评论 0原文

我知道无状态 EJB 存储在池中并根据需要进行实例化,我的问题是,当存在更多 EJB 依赖项时会发生什么,例如这样的情况:

@Remote
@Stateless
public class Master_EJB{
     @EJB
     private EJB_A ejb_A;

     @EJB
     private EJB_B ejb_B;
}

EJB_A 和 EJB_B 也是无状态 EJB。

在最坏的情况下,如果同时有两个请求,服务器将从池中检索两个 Master_EJB 实例(或者根据需要创建)。

但是,如果这两个调用中,一个仅需要 EJB_A,另一个仅需要 EJB_B,则需要多少个实例:4 个(2 Master_EJB + 1 EJB_A + 1 EJB_B)或 6 个(2 Master_EJB + 2 EJB_A + 2 EJB_B)?

I know Stateless EJBs are stored in a pool and instantiated as needed, my question is, what happens when there are more EJB dependencies, for example with something like this:

@Remote
@Stateless
public class Master_EJB{
     @EJB
     private EJB_A ejb_A;

     @EJB
     private EJB_B ejb_B;
}

With EJB_A and EJB_B also being stateless EJBs.

In the worst case, if there are two petitions at exactly the same time, the server will retrieve two instances of Master_EJB from the pool (or create if needed).

But if from those two calls, one only needs the EJB_A and the other only the EJB_B, how many instances are needed: 4 (2 Master_EJB + 1 EJB_A + 1 EJB_B) or 6 (2 Master_EJB + 2 EJB_A + 2 EJB_B)?

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

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

发布评论

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

评论(1

━╋う一瞬間旳綻放 2024-12-09 04:30:13

EJB_A和EJB_B是无状态的还是有状态的?

如果是无状态的,答案取决于使用的容器/池类型和最近的情况(请求数量、服务器负载等)。
如果有状态和容器将实例化 2 个 Master_EJB 实例,则将实例化两个 EJB_A 实例,并且还将实例化两个 EJB_B 实例。

请记住,容器可能创建两个Master_EJB实例 - 这又取决于容器本身和当前情况(同样,容器可能决定仅使用一个Master_EJB实例来处理请求)。

EJB_A and EJB_B are stateless or stateful?

If stateless, answer depends on container/pool type used and recent situation (number of requests, server load and so on).
If stateful and container will instantiate 2 Master_EJB instances, then two instances of EJB_A will be instantiated and also two instances of EJB_B will be instantiated.

Please bear in mind that container may create two Master_EJB instances - it depends on container itself and the current situation again (as well, container may decide to process request using only one Master_EJB instance).

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