0
自過去幾天以來,我一直在使用togglz。togglz基於註解的特徵驗證方法
我想知道在togglez API中是否有基於註解的方法。
我想這樣做,像下面 -
public class Application {
public static void main(String[] args) {
Application application = new Application();
boolean first=false;
first=application.validate1();
System.out.println(first);
}
@Togglz(feature = "FEATURE_01")
public boolean validate1() {
System.out.println("validate1");
return false;
}
}
上有什麼togglz可用。
我找不到任何地方,如果你有任何關於這種註釋的想法,請幫助。
我的要求是基於傳遞給它