Apache Click Guice 集成
有没有一种方法可以将 apache click web 框架与 Google Guice 集成,以便我可以使用 @Inject 将 Guice 服务注入到页面/面板类中?
Is there a way of integrating apache click web framework with Google Guice such that I can use @Inject to inject Guice services into page/panel classes ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 web.xml 上使用了 guice 过滤器,并在 guice servlet 模块中添加了 ClickServlet。然后,我对单击 servlet 上的 newPageInstance() 方法进行了重写,并调用injector.injectMembers(page) 将所有依赖项注入到新创建的页面上。
I used the guice filter on web.xml and added the ClickServlet in guice servlet module. I then did an override on the newPageInstance() method on click servlet and called injector.injectMembers(page) to inject all the dependencies on the newly created page.