Files
spring-boot-rest/spring-aop/src/main/java/com/baeldung/Service.java

13 lines
220 B
Java

package com.baeldung;
import org.springframework.stereotype.Component;
@Component
public class Service {
@LogExecutionTime
public void serve() throws InterruptedException {
Thread.sleep(2000);
}
}