Guice jar 中的 Assisted 类在哪里?
我已经通过 Maven 下载了 Guice 2.0 和 3.0,但在 jar 中找不到整个 com.google.inject.assistanceinject 包。 Guice 的所有其他组件似乎都在那里,但是 Assisted 及其同类根本不存在。
知道他们去了哪里吗?
I've download Guice 2.0 and 3.0 via Maven, and can't find the entire com.google.inject.assistedinject package in the jar. All the other components of Guice seem to be there, but Assisted and its brethren are simply not there.
Any idea where they went?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Assisted 与 AssistedInjection 扩展的其余部分捆绑在一起,作为 com.google.inject.extensions 组以及多重绑定,持久性和 Servlet。
4.0 是 com.google.inject.extensions:guice-assistanceinject:4.0 < /一>
<一href="http://mvnrepository.com/artifact/com.google.inject.extensions/guice-assistanceinject/3.0" rel="noreferrer">3.0 是 com.google.inject.extensions:guice-assistanceinject:3.0
2.0 是 com.google.inject.extensions:guice-assistance-inject:2.0
Assisted is bundled with the rest of the AssistedInjection extension as a separate artifact in the com.google.inject.extensions group, along with Multibindings, Persistence and Servlet.
4.0 is com.google.inject.extensions:guice-assistedinject:4.0
3.0 is com.google.inject.extensions:guice-assistedinject:3.0
2.0 is com.google.inject.extensions:guice-assisted-inject:2.0