|
@@ -5,7 +5,6 @@ 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;
|
|
|
import java.util.concurrent.Executors;
|
|
@@ -35,7 +34,7 @@ public class StatisRequestIdTimeComp {
|
|
|
* @param requestId
|
|
|
*/
|
|
|
public void putReQuestIdAndTime(String requestId){
|
|
|
- map.put(requestId,new Date().getTime());
|
|
|
+ map.put(requestId,System.currentTimeMillis());
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -53,7 +52,7 @@ public class StatisRequestIdTimeComp {
|
|
|
public void run() {
|
|
|
|
|
|
int count = 0;
|
|
|
- long currTime = new Date().getTime();
|
|
|
+ long currTime = System.currentTimeMillis();
|
|
|
for(Map.Entry<String,Long> entry:map.entrySet()){
|
|
|
if(currTime-entry.getValue()>costTimeAtten*1000){
|
|
|
count++;
|