Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 Google Guice(任何其他 DI 框架)在 Java EE 5 中注入 EJB?默认情况下,Java EE 5 使用 JNDI 来注入 EJB。
我没有使用 Guice 的直接经验——但是,可以使用其他框架在 JEE5 应用程序中注入 EJB。例如,Seam就是这样做的。所以原则上,它应该是可能的,因为可以注入的对象类型没有固有的限制,只要框架负责所有查找细节。
更新:
看看这篇文章,详细介绍如何使用 Guice 注入 EJB。