gpt4 book ai didi

java - SessionContext.getBusinessObject() 的返回值与 bean 中使用的 'this' 关键字有何不同?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:48:03 24 4
gpt4 key购买 nike

SessionContext.getBusinessObject() 在文档中描述如下,

Obtain an object that can be used to invoke the current bean through the given business interface.

Parameters: businessInterface - One of the local business interfaces or remote business interfaces for this session bean.

Returns: The business object corresponding to the given business interface.

我不能在 Java 中使用“this”关键字来完成相同的任务吗?这些有何不同?

最佳答案

这里的动机是大多数 EJB 实现都在代理上工作。将其视为老派的 AOP 并不过分。业务接口(interface)由 EJB 容器实现,通常是通过一个简单的 java.lang.reflect.Proxy,这个对象被传递给系统中通过@EJB 或 JNDI 查找请求 ejb 的每个人。

代理连接到容器,对它的所有调用都直接转到容器,容器将执行安全检查、启动/停止/暂停事务、调用拦截器等,然后最终将调用委托(delegate)给 bean实例——当然,由于抛出任何异常而需要进行任何清理——然后最终通过代理将返回值移交给调用者。

直接调用 this.foo() 或将“this”传递给调用者以便他们也可以进行直接调用,将​​跳过所有这些,并且容器将有效地从图片中删除。 “getBusinessObject(Class)”方法允许 bean 实例从本质上获得对自身的代理,因此它可以调用自己的方法并利用与其关联的容器管理服务——拦截器、事务管理、安全实现等。

关于java - SessionContext.getBusinessObject() 的返回值与 bean 中使用的 'this' 关键字有何不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3381002/

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