Beispiel #1
0
 @Override
 public void init(FilterConfig fc) throws ServletException {
   LOG.info("初始化性能过滤器(Initialize the filter performance)");
   enabled = PropertyHolder.getBooleanProperty("monitor.performance");
   if (enabled) {
     LOG.info("启用性能分析日志(Enable performance analyzing log)");
   } else {
     LOG.info("禁用性能分析日志(Disable performance analyzing log)");
   }
 }