fix 修复日志模块中处理请求前执行的方法名

This commit is contained in:
AntonyCheng 2024-06-08 21:45:44 +08:00
parent 456620b638
commit d38be1bf86

View File

@ -56,7 +56,7 @@ public class LogAspect {
* 处理请求前执行 * 处理请求前执行
*/ */
@Before(value = "@annotation(controllerLog)") @Before(value = "@annotation(controllerLog)")
public void boBefore(JoinPoint joinPoint, Log controllerLog) { public void doBefore(JoinPoint joinPoint, Log controllerLog) {
StopWatch stopWatch = new StopWatch(); StopWatch stopWatch = new StopWatch();
KEY_CACHE.set(stopWatch); KEY_CACHE.set(stopWatch);
stopWatch.start(); stopWatch.start();