2019-12-17 21:23:11 +01:00
|
|
|
package com.baeldung;
|
2019-10-31 20:43:47 -05:00
|
|
|
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
@Component
|
|
|
|
public class Service {
|
|
|
|
|
|
|
|
@LogExecutionTime
|
|
|
|
public void serve() throws InterruptedException {
|
|
|
|
Thread.sleep(2000);
|
|
|
|
}
|
|
|
|
}
|