我們有要求監視我們的應用程序的性能。我發現鏈接A ZK Performance Monitor,但我無法配置此。其實我想在我的應用程序與slf4j記錄器配置性能監視。任何人都可以共享步驟來配置(zk 7.0.1)ZK性能監視器
我想爲這種情況創建CommandPhaseListener
。但我不確定在我們的應用程序中實現CommandPhaseListener
類以跟蹤性能。實際上,我們希望監視性能在slf4j記錄器中。
package support.mvvm;
import org.zkoss.bind.*;
import org.zkoss.zk.ui.Executions;
public class CommandPhaseListener implements PhaseListener {
@Override
public void prePhase(Phase phase, BindContext ctx) {
if (phase== Phase.COMMAND){
Executions.getCurrent().setAttribute("command", ctx.getCommandName());
System.out.println(ctx.getCommandName());
}
}
@Override
public void postPhase(Phase phase, BindContext ctx) {
}
}
感謝
你有什麼迄今所做?你的代碼中有哪些不起作用? – AlexGreg 2014-08-29 11:42:58
@AlexGreg我編輯自己的帖子請看這裏 – user3062776 2014-08-29 13:08:52
@chillworld – user3062776 2014-08-29 13:13:46