今天面試官考我Java註解...
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檔案
到jvm的過程、AOP是什麼等等等...這些在【Java3y】都有過詳細的基本教程甚至電子書,我就不再詳述了。
註解可以把它當做是配置的載體,可能在執行時、可能在編譯過程中解析註解,實現些方便好用的功能。
歡迎關注我的微信公眾號【面試造火箭】來聊聊Java面試