public void send(String userName) { try { // qps 上報 qps(params); long startTime = System.currentTimeMillis(); // 構建上下文(模擬業務代碼) ProcessContext processContext = new ProcessContext(); UserModel userModel = new UserModel(); userModel.setAge("22"); userModel.setName(userName); //... // rt 上報 long endTime = System.currentTimeMillis(); rt(endTime - startTime); } catch (Exception e) { // 出錯上報 error(params); } }
@Around("@annotation(com.sanwai.service.openapi.monitor.Monitor)") public Object antispan(ProceedingJoinPoint pjp) throws Throwable { String functionName = pjp.getSignature().getName(); Map<String, String> tags = new HashMap<>(); logger.info(functionName); tags.put("functionName", functionName); tags.put("flag", "done"); monitor.sum(functionName, "start", 1); //方法執行開始時間 long startTime = System.currentTimeMillis(); Object o = null; try { o = pjp.proceed(); } catch (Exception e) { //方法執行結束時間 long endTime = System.currentTimeMillis(); tags.put("flag", "fail"); monitor.avg("rt", tags, endTime - startTime); monitor.sum(functionName, "fail", 1); throw e; } //方法執行結束時間 long endTime = System.currentTimeMillis(); monitor.avg("rt", tags, endTime - startTime); if (null != o) { monitor.sum(functionName, "done", 1); } return o; }
文章以純面試的角度去講解,因此有不少的細節是未鋪墊的。java
好比說反射、.java文件
到jvm的過程、AOP是什麼等等等...這些在【Java3y】都有過詳細的基本教程甚至電子書,我就再也不詳述了。面試
歡迎關注個人微信公衆號【面試造火箭】來聊聊Java面試api