gpt4 book ai didi

cdi - 在 CDI 中,如何在注入(inject)时为 bean 提供范围?

转载 作者:行者123 更新时间:2023-12-02 20:30:24 28 4
gpt4 key购买 nike

在 CDI 中,我能够注入(inject)具有特定范围的 bean,即定义 bean 类的范围。但是,如果我创建没有任何作用域的 bean 类,并且在注入(inject)时为该 bean 赋予作用域,会怎样呢?我的要求是在后一种情况下使注入(inject)时间范围成为可能。问题是注入(inject)发生在dependent scope而不是所需的带注释的范围,除非我使用 producer .

例如:

案例1:

当我在类声明中声明 bean 的范围时,如下所示:

@ApplicationScoped
class UserDetails {
...
}

并像这样注入(inject):

@ViewScoped
class UserView {

@Inject
UserDetails userDetails;
.
.
}

它按预期工作。在应用程序范围内注入(inject)的 Bean 在整个应用程序的所有其他 Bean 中都可用。

<小时/>

案例2:

但是当我在类声明中没有给出范围时:

class UserDetails {
...
}

像这样注入(inject)(在注入(inject)点给出范围):

@ViewScoped
class UserView {

@Inject @ApplicationScoped
UserDetails userDetails;
.
.
}

失败了!...注入(inject)的bean没有注入(inject)application scope但得到了dependent scope相反(在我的例子中是View Scope)。

我必须创建一个Producer &aQualifier哪里@Produces方法正在提供所需的bean application scope 。我觉得如果我必须在application scope中注入(inject)bean类UserDetails,那么这个生产者/限定符扩展就会成为一种开销。在这种情况下。

事实是,UserDetails 类是第三方 jar 的一部分。该类没有声明任何作用域,并且是一个 POJO。我无法更改其源代码。

根据上述讨论,我有两个问题:

  1. 当有人知道要在特定作用域下注入(inject) bean 时,为什么有人会创建没有作用域定义的 bean 类?这种做法对设计有什么好处吗?

  2. 由于我无法控制 Bean 类的源代码,并且它们不与任何范围关联,因此生产者/限定符扩展是将此类 Bean 注入(inject)所需范围的唯一好方法吗?

最佳答案

<强>1。未定义范围的对象 - 使用 @Dependent

CDI 会将没有范围的对象视为 @Dependent scope .

An instance of a dependent bean is never shared between differentclients or different injection points. It is strictly a dependentobject of some other object. It is instantiated when the object itbelongs to is created, and destroyed when the object it belongs to isdestroyed.

Beans with scope @Dependent don’t need a proxy object. The clientholds a direct reference to its instance.

Spring IoC dev:CDI @Dependent 作用域类似于 Spring IoC Prototype 作用域。

<强>2。没有@Produces,只使用@Inject

CDI 将为每次注入(inject)创建新的 UserDetails 实例(@Dependent 范围)。这里没有共享数据!您无法像(注入(inject)时)那样定义范围。

<强>3。使用@Produces 并使用@Inject

您可以控制 UserDetails 对象的范围(ApplicationScoped、SessionScoped 或 RequestScoped)

public class Producers {

@Produces @ApplicationScoped
public UserDetails createUserDetails() {
// Initialize UserDetails
}

public void release(@Disposes UserDetails userDetails) {
// Release userDetails if you have to
}
}

<强>4。另一种方法:如果可能的话扩展 UserDetails

    @ApplicationScoped // Or @SessionScoped, @RequestScoped
public class UserDetailsImpl extends UserDetails {
//
}

如果您想要 UserDetails 的 ApplicationScoped。可以采用方式3或方式4。

关于cdi - 在 CDI 中,如何在注入(inject)时为 bean 提供范围?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36314431/

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