|
@@ -4,6 +4,7 @@ import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import javax.annotation.PostConstruct;
|
|
|
+import javax.annotation.PreDestroy;
|
|
|
import java.util.Date;
|
|
|
import java.util.Map;
|
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
@@ -67,4 +68,8 @@ public class StatisRequestIdTimeComp {
|
|
|
}
|
|
|
},1,1, TimeUnit.SECONDS);
|
|
|
}
|
|
|
+ @PreDestroy
|
|
|
+ public void destroy(){
|
|
|
+ service.shutdown();
|
|
|
+ }
|
|
|
}
|