是否有与 @Assisted 等效的 javax.inject.*

发布于 2024-11-28 02:56:19 字数 228 浏览 2 评论 0原文

我们正在考虑使用 JSR-330 javax.inject.* 注释而不是 com.google.inject.* 等效项。看起来 JSR-330 标准不包括我在 Guice 中喜欢的几个功能。

具体来说,我发现不支持 @Assisted 关键字。另外,@AssistedInject 怎么样? @Inject 是否可以放置在多个构造函数上?

我有兴趣保持供应商中立,但不以牺牲方便的功能为代价。有什么建议吗?

We're looking at using the JSR-330 javax.inject.* annotations instead of the com.google.inject.* equivalents. It looks like the JSR-330 standard does not include several features that I've come to love in Guice.

Specifically, I see no support for the @Assisted keyword. Also, what about @AssistedInject? Is @Inject able to be placed on multiple constructors?

I'm interested in being vendor neutral, but not at the cost of handy features. Any recommendations?

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

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

发布评论

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

评论(2

记忆里有你的影子 2024-12-05 02:56:19

@Assisted 仅限 Guice。您可以将其与 JSR 330 的 @Inject 一起使用。如果您不需要 Guice 依赖项,请通过在代码中实现工厂接口来进行手动辅助注入。

@Assisted is Guice-only. You can use it with JSR 330's @Inject. If you don't want the Guice dependency, do manual assisted injection by implementing the factory interface in code.

四叶草在未来唯美盛开 2024-12-05 02:56:19

回答你的问题之一:

@Inject 是否可以放置在多个构造函数上?

来自 javadoc

可注入的构造函数用 @Inject 注释并接受零或
更多依赖项作为参数。 @Inject 最多可以应用到一个
每个类的构造函数。

所以我认为答案是否定的。

In answer to one of your questions:

Is @Inject able to be placed on multiple constructors?

from javadoc

Injectable constructors are annotated with @Inject and accept zero or
more dependencies as arguments. @Inject can apply to at most one
constructor per class.

So I think the answer is no.

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