Apache Click Guice 集成

发布于 2024-11-19 14:00:49 字数 92 浏览 1 评论 0原文

有没有一种方法可以将 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 技术交流群。

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

发布评论

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

评论(1

儭儭莪哋寶赑 2024-11-26 14:00:49

我在 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.

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