Spring:定义bean的属性(引用其他bean)作为可选

发布于 2024-10-04 17:42:56 字数 432 浏览 9 评论 0原文

有两个 bean 定义:

文件 a.xml

<bean id="A" class="com.A">
 <property name="bClass" ref="B"/>
</bean>

文件 b.xml

<bean id="B" class="com.B"/>

在某些情况下,文件 b.xml 不包含 bean B 的定义。
从另一方面来看,文件 a.xml 始终包含指向 B 定义的链接。

如何将对 B bean 的引用定义为可选,以避免org.springframework.beans.factory.NoSuchBeanDefinitionException

Have two bean definitions:

file a.xml

<bean id="A" class="com.A">
 <property name="bClass" ref="B"/>
</bean>

file b.xml

<bean id="B" class="com.B"/>

In some cases file b.xml does not contain definition of bean B.
And from other side,file a.xml always contains link to B definition.

How to define reference to B bean to be optional, in order to avoid org.springframework.beans.factory.NoSuchBeanDefinitionException

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

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

发布评论

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

评论(3

世态炎凉 2024-10-11 17:42:56

你不能。如果您有对 B 的引用,则 B 必须存在。您需要确保某种存根 B 存在,其定义将被 b.xml 中的 B 的定义覆盖。

或者,不要将 B 注入 A,而是让 A 使用 BeanFactory 查找 B。 getBean("B"),并以编程方式处理可能缺少 B 的情况。

You can't. If you have a reference to B, then B must exist. You need to ensure that some kind of stub B exists, the definition of which would be overridden by the definition of B in b.xml.

Alternatively, don't inject B into A, but make A look up B using BeanFactory.getBean("B"), and handle the potential absence of B programmatically.

蒲公英的约定 2024-10-11 17:42:56

另一种可能性(除了斯卡夫曼建议的这些之外)是扭转依赖性。让 bean B 知道 bean A。它甚至可以在其中注册自己 - 即调用 setter,例如:

public class B {
  private A a;

  public void init() {
    a.setB(this);
  }
}

Yet another possibility (on top of these suggested by skaffman) is to reverse the depenency. Let the bean B know the bean A. It can even register itself within it - that is, call the setter, e.g.:

public class B {
  private A a;

  public void init() {
    a.setB(this);
  }
}
-柠檬树下少年和吉他 2024-10-11 17:42:56

@Autowired(required=false) 有帮助

@Autowired(required=false) helped

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