yaozhixue 1 year ago
parent
commit
569bf50183

+ 2 - 2
src/main/java/com/zfire/jiasm/syncdata/config/TheaderPoolConfig.java

@@ -21,9 +21,9 @@ public class TheaderPoolConfig {
      */
 
     /** 核心线程数(默认线程数) */
-    private static final int corePoolSize = 4;
+    private static final int corePoolSize = 60;
     /** 最大线程数 */
-    private static final int maxPoolSize = 8;
+    private static final int maxPoolSize = 100;
     /** 允许线程空闲时间(单位:默认为秒) */
     private static final int keepAliveTime = 5;
     /** 缓冲队列大小 */

+ 8 - 0
src/main/java/com/zfire/jiasm/syncdata/test.java

@@ -65,6 +65,7 @@ public class test {
         System.out.println("加一时"+ newDate);
         newDate.setTime(time + 1000*60*60*24);*/
 
+/*
 
         SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
         DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
@@ -74,8 +75,15 @@ public class test {
         System.out.println(sdf.format(date));
         System.out.println(format.parse(sdf.format(date)));
 
+*/
 
 
+        long timeStamp = 1691132713 * 1000L; // 时间戳,单位:毫秒
+        Date date = new Date(timeStamp);
+        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+        String formatTime = sdf.format(date);
+        System.out.println(formatTime);
+
 
     }