胶水应该放在哪里?
我有用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将配置拆分为几个 Guice 模块,靠近它们正在连接的代码。然后使用组合来构造一个注入器。
Just split the configuration into several Guice Modules near the code that they are wiring. Then use composition to construct an injector.