gpt4 book ai didi

java - 如何在 EJB 3.1 中缓存 EJB 远程接口(interface)?

转载 作者:行者123 更新时间:2023-11-29 05:21:08 24 4
gpt4 key购买 nike

有没有办法在客户端缓存对远程 EJB 的引用?

在 EJB 2.x 中,它是通过缓存 EJBHome 来实现的。

Do we have any similar feature available in EJB 3.x to cache the EJB Remote Interface which will provide new instance of EJB (Stateless session bean) every time it is used? (In EJB 2.x we get new instance of EJB when we call create() method on EJBHome)

最佳答案

您不需要无状态 session bean 的新实例,因为它们是无状态的。您在客户端中的引用是无状态代理,因此 EJB 容器将为每个请求获取无状态 bean 的新(或池化)实例,并在方法完成时销毁(或返回到池中)该实例.对于 EJB 3,您可以简单地缓存查找结果。 @EJB 字段注入(inject)隐含地鼓励了这一点,它鼓励您将 EJB 引用存储在一个简单的字段中。

关于java - 如何在 EJB 3.1 中缓存 EJB 远程接口(interface)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24697050/

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