Browse Source

定时任务完善

tags/正式3.2.0
雍文秀 2 years ago
parent
commit
ceca177f99

+ 2
- 0
sapi/src/main/resources/application.properties View File

@@ -103,6 +103,8 @@ cron.classReportWeek=0 0 2 ? * MON
103 103
 cron.classReportMonth=0 0 3 1 * ?
104 104
 #周日的凌晨3:00同步基础信息
105 105
 cron.synctime=0 0 3 ? * SUN
106
+#一次同步数量
107
+cron.syncnum=100
106 108
 #每隔3s清除一下请求地址map
107 109
 cron.deleteUriMap=0/3 * * * * ?
108 110
 

+ 0
- 7
sstudy/src/main/java/com/xhkjedu/sstudy/config/ConfigKey.java View File

@@ -64,13 +64,6 @@ public class ConfigKey {
64 64
         ConfigKey.dbname = dbname;
65 65
     }
66 66
 
67
-    public static Integer syncnum;//一次同步数量
68
-
69
-    @Value("${cron.syncnum}")
70
-    public void setSyncnum(Integer syncnum) {
71
-        ConfigKey.syncnum = syncnum;
72
-    }
73
-
74 67
     public static Integer redisdatatime;//缓存访问数据有效时长
75 68
     public static String secretKey;//secretKey必须为24位
76 69
 

Loading…
Cancel
Save