具有更多注入 EJB 实例的无状态 EJB
我知道无状态 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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).