13 lines
220 B
Java
13 lines
220 B
Java
|
package org.baeldung;
|
||
|
|
||
|
import org.springframework.stereotype.Component;
|
||
|
|
||
|
@Component
|
||
|
public class Service {
|
||
|
|
||
|
@LogExecutionTime
|
||
|
public void serve() throws InterruptedException {
|
||
|
Thread.sleep(2000);
|
||
|
}
|
||
|
}
|