Spring注入绑定到Instance

发布于 2024-11-28 10:22:21 字数 133 浏览 0 评论 0原文

有没有一种方法可以使用类似于 Google Guice 的 Spring DI 将注入的对象绑定到特定实例

bind(MyClass.class).toInstance(myclassobject);

Is there a way to bind an injected object to a specific instance using Spring DI similar to Google Guice's

bind(MyClass.class).toInstance(myclassobject);

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

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

发布评论

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

评论(1

粉红×色少女 2024-12-05 10:22:21

如果构造函数或成员变量用@Autowired注释,Spring将尝试查找与Object类型匹配的bean。您可以使用 @Qualifier 获得与注释类似的功能,例如:

bind(MyClass.class).annotatedWith(Names.named("main")).toInstance(myclassobject);

在 Spring 中将变为:

@Autowired @Qualifier("main") private MyClass myClassObject;

<bean name="myClassObject" class="example.MyClassImpl">
    <qualifier value="main"/>
</bean>

参见 http://static.springsource.org/spring/docs/2.5.x/reference/beans.html#beans-autowired-annotation了解更多。

If the constructor or member variable is annotated with @Autowired, Spring will try to find a bean that matches the type of the Object. You can get similar functionality to the annotation using @Qualifier, for example:

bind(MyClass.class).annotatedWith(Names.named("main")).toInstance(myclassobject);

would become in Spring:

@Autowired @Qualifier("main") private MyClass myClassObject;

<bean name="myClassObject" class="example.MyClassImpl">
    <qualifier value="main"/>
</bean>

See http://static.springsource.org/spring/docs/2.5.x/reference/beans.html#beans-autowired-annotation for more.

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