关于外部库的 Guice 与 Spring

发布于 2024-11-18 16:07:18 字数 200 浏览 0 评论 0原文

我有一个与以下情况相关的问题:想要将内容注入到外部库的实例中,即无法使用注入注释进行注释的类。

由于 Guice 完全依赖于注释,这是否意味着我无法使用 Guice 处理这个用例?使用 Spring,我只需在 XML 中声明注入,无需修改类(通过添加注释),因此它可以正常工作。

这些观察结果是否正确?如果正确,您在使用 Guice 时如何解决这个问题?

I have a question related to the case where one wants to inject stuff into instances of external libraries, i.e. classes that cannot be annotated with injection annotations.

Since Guice relies exclusively on annotations, does this mean I cannot handle this use case with Guice? With Spring, I can just declare the injection in XML and there's no need to modify the class (by adding annotations), so it just works.

Are these observations correct and if so, how do you solve the problem when using Guice?

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

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

发布评论

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

评论(1

留一抹残留的笑 2024-11-25 16:07:18

通过 Guice,您可以使用提供程序方法提供商绑定, 实例绑定(针对单例)和 构造函数绑定。它们不需要存在 @Inject 注释。

With Guice you can use provider methods, provider bindings, instance bindings (for singletons) and constructor bindings. They don't require the presence of an @Inject annotation.

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