|
|
|
@ -5,6 +5,7 @@ import com.fanruan.api.net.NetworkKit;
|
|
|
|
|
import com.fr.intelli.record.Focus; |
|
|
|
|
import com.fr.record.analyzer.EnableMetrics; |
|
|
|
|
import com.fr.report.enhancement.engine.write.service.action.EvaluateFormulaAction; |
|
|
|
|
import com.fr.web.utils.WebUtils; |
|
|
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest; |
|
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
@ -22,11 +23,16 @@ public class ReplaceDemo extends EvaluateFormulaAction {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
@Focus(id="com.tptj.demo.hg.request.interceptor.v10",text = "cmd接口拦截") |
|
|
|
|
public void actionCMD(HttpServletRequest req, HttpServletResponse res) throws Exception { |
|
|
|
|
actionCMD(req,res, WebUtils.getHTTPRequestParameter(req,"sessionID")); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
@Focus(id="com.tptj.demo.hg.request.interceptor.v10",text = "cmd接口拦截") |
|
|
|
|
public void actionCMD(HttpServletRequest req, HttpServletResponse res, String sessionID)throws Exception{ |
|
|
|
|
String expression = NetworkKit.getHTTPRequestParameter(req,"expression"); |
|
|
|
|
LogKit.info("Evaluate Formula Starting: {}",expression); |
|
|
|
|
super.actionCMD(req,res); |
|
|
|
|
super.actionCMD(req,res,sessionID); |
|
|
|
|
LogKit.info("Evaluate Formula Ended: {}",expression); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|