胶水应该放在哪里?

发布于 2024-10-19 17:50:10 字数 244 浏览 4 评论 0原文

我有用 Java 和 Guice 编写的应用程序。对于这个应用我有几个看法。他们中的一些人使用 Guice,另一些则不使用。现在我想将我的代码分成独立的模块。我可以划分应用程序逻辑、查看器界面和查看器实现。我应该将每个视图变体的 Guice 配置放在哪个模块中?我认为有两种可能的答案 - 进入查看器模块(在这种情况下,所有查看器都将依赖于 Guice)或与模块分开贡献此类 ModuleConfiguration。正确的方法是什么?如果分开的话,这种贡献的最佳方式是什么?

I have application written with Java and Guice. For this application I have several views. Some of them use Guice, other - doesn't. Now I want to separate my code into independent modules. I can devide application logic, viewers interfaces and viewers implementations. In which module should I put Guice configuration per each view variant? I think there is two possible answers - into viewers module (in this case all viewers will depend from Guice) or contribute such ModuleConfiguration separately from module. What is the right way? If separably, what is the best way for such contribution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

满地尘埃落定 2024-10-26 17:50:10

只需将配置拆分为几个 Guice 模块,靠近它们正在连接的代码。然后使用组合来构造一个注入器。

Injector injector = Guice.createInjector(new ModuleA(), new ModuleB());

Just split the configuration into several Guice Modules near the code that they are wiring. Then use composition to construct an injector.

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