在Spring Boot中优雅的计算方法执行时间

计算方法执行时间是大多数后端应用程序中常见的非功能性需求。以下是一些计算执行时间的传统方法:

java 复制代码
long startTime = (System.currentTimeMillis());
// 你的逻辑代码
long executionTime = (System.currentTimeMillis() - startTime) / 1000;
LOGGER.info("计算所花费的时间为:{} 秒", executionTime);

StopWatch watch = new StopWatch();
watch.start();
// 你的逻辑代码
watch.stop();
LOGGER.info("计算所花费的时间为:{} 秒", watch.getTotalTimeSeconds());

可以看到需要在每个需要计算执行时间的方法里增加相同的计算代码,这种统计代码执行时间的方式存在代码冗余、违反 DRY 原则、侵入性强等问题。

接下来让我们通过 AOP 来实现在方法顶部添加一个注解,就可以非常高效地计算所有方法的执行时间的功能。

步骤一:启用 Spring AOP

首先,通过在 POM.xml 中添加以下内容来启用 Spring AOP:

java 复制代码
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-aop</artifactId>
</dependency>

步骤二:创建自定义注解

现在让我们在 Spring Boot 中创建一个名为 ExecutionTimeLogger 的自定义注解。可以看到,该注解在运行时起作用,并且适用于方法级别。

java 复制代码
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ExecutionTimeLogger {
}

步骤三:创建切面类

创建一个作为切面的新类,包含计算方法执行时间的逻辑。在 Spring AOP 中有多种使用切面的方式,这里使用 @Around 注解。创建 ExecutionTimeLoggerAspect 类并使用 @Aspect 注解,再创建 executionTimeLogger 方法并添加 @Around 注解,将注解名称作为参数传递给 @Around,这样该方法会在带 ExecutionTimeLogger 注解的方法执行前后被调用:

java 复制代码
@Aspect
@Component
publicclass ExecutionTimeLoggerAspect {
    static final Logger logger = LoggerFactory.getLogger(ExecutionTimeLoggerAspect.class);

    @Around("@annotation(ExecutionTimeLogger)")
    public Object executionTimeLogger(ProceedingJoinPoint joinPoint) {
        try {
            long startTime = System.currentTimeMillis();
            Object proceed = joinPoint.proceed();
            long executionTime = (System.currentTimeMillis() - startTime);
            logger.info("{}方法在{}毫秒内执行完毕", joinPoint.getSignature(), executionTime);
            return proceed;
        } catch (Throwable e) {
            logger.error("在计算{}方法执行时间时出错", joinPoint.getSignature(), e);
            return null;
        }
    }
}

步骤四:使用自定义注解

所有必需的配置都已完成。现在我们唯一需要做的就是在想要计算 Java 代码中方法执行时间的地方使用该注解。假设要计算方法的执行时间,如下面的代码所示。只需在方法顶部添加注解即可。

java 复制代码
public class CustomLoggingService {
    @ExecutionTimeLogger
    public void myMethod() {
        try {
            Thread.sleep(20000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

步骤五:查看输出

当 myMethod 在你的代码中执行时的输出:

arduino 复制代码
c.n.t.a.ExecutionTimeLoggerAspect|void com.main.project.CustomLoggingService.myMethod()方法在20毫秒内执行完毕

是不是很简单?想象一下节省了多少时间和精力。只需写一遍计算执行时间的代码,然后在需要计算执行时间的地方继续使用注解即可。

总结一下:

  1. 创建自定义注解。

  2. 创建 @Aspect 类,包含计算执行时间的方法。

  3. 用 @Around 声明方法并指定为自定义注解执行。

  4. 在要记录执行时间的方法上加注解。

相关推荐
likuolei几秒前
XSL-FO 软件
java·开发语言·前端·数据库
凌波粒几秒前
SpringBoot基础教程(2)--yaml/配置文件注入/数据校验/多环境配置
java·spring boot·后端·spring
S***26752 分钟前
Spring Boot环境配置
java·spring boot·后端
6***83053 分钟前
什么是Spring Boot 应用开发?
java·spring boot·后端
毕设源码柳学姐9 分钟前
计算机毕设 java 智慧社区服务系统 SSM 框架社区生活平台 Java 开发的便民服务与互动系统
java·开发语言·生活
U***l83211 分钟前
【postgresql】分区表管理
java·数据库·postgresql
倚肆11 分钟前
MyBatis-Plus Mapper 接口方法详解
java·mybatis
n***786812 分钟前
SpringBoot详解
java·spring boot·后端
s***P98216 分钟前
Spring数据库原理 之 DataSource
java·数据库·spring
0***h94217 分钟前
oracle 12c查看执行过的sql及当前正在执行的sql
java·sql·oracle