我正在寻找如何在运行时启用/禁用模块的方法。我发现togglz framework所以我只想问我是否可以用它或任何其他工具实现我想要的东西。
假设我有以下maven模块(每个模块都有自己的弹簧配置,例如AccountQueryConfiguration
,AccountCommandConfiguration
,...)
- account
--- account-query
--- account-command
--- account-rest
- user
--- user-query
--- user-command
--- user-rest
我想在运行时停止部分/全部帐户模块。我可以用togglz或类似的东西吗?
我想我可以使用spring ApplicationContext执行此操作并在运行时删除bean ...对吗?
提前致谢。