我尝试将togglz集成到我的Spring应用程序中,但是看起来自动配置很难提供一个FeatureManager。: No FeatureManager provided by org.togglz.core.context.ThreadLocalFeatureManagerProvider
2017-02-at org.togglz.core.context.FeatureContext.getFeatureManager(FeatureContext.java:53) ~[togglz-core-2.3.0.Final
目前,我们通过以下方式从MyFeatures.java文件中管理代码中的切换:import org.togglz.core.annotation.EnabledByDefault;import org.togglz.core.context.FeatureContext;
public enum这至少有两个地方我们必须关闭我们的功能,如果我们有更多的测试使用这些功能,可能会
我正在尝试使用togglz在Springboot中实现UsernameActivation Startegy,但由于在这方面的示例/文档不足,我无法这样做。这是一个用maven编写的简单的Poc。return FeatureContext.getFeatureManager().isActive(this);public class Togglz