Seam 3 - 检索应用程序上下文中的所有Seam组件
有没有办法获得所有@ApplicationScoped的Seam 3组件类?
is there a way to get all the Seam 3 component classes which are @ApplicationScoped?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我自己没有尝试,只是阅读
16.5 后的猜测。 Weld 的 Bean 接口
章节 文档更新
要获取
Bean
的实例
:更新 2
看起来以上所有内容都错过了CDI 的全部要点:)
Didn't try myself, just a guess after reading
16.5. The Bean interface
chapter of Weld documentationUPDATE
To obtain an
instance
of aBean
:UPDATE 2
Looks like all above misses the whole point of CDI :)
如果您想从 applicationContext 中的组件调用方法或在其中使用字段,最好将其定义为生产者方法或字段并将其注入您想要的位置。
if you want to call a method from a component in applicationContext or use a field in this, it's better that u define it as producer method or field and inject it where u want.
您可以使用
getApplicationContext()
获取上下文,然后使用getNames()
获取应用程序范围内事物的所有名称,然后使用get()
通过名称检索它们。你想做什么?从那里你必须使用反射来让它们达到正确的类型。
You would use
getApplicationContext()
to get the context, and then thegetNames()
to get all names of things that are application scope, and then you would useget()
to retrieve them by name.What are you trying to do? From there you would have to use reflection to get them to the right type..