|
@@ -0,0 +1,38 @@
|
|
1
|
+package com.dashitech.migration.task.other;
|
|
2
|
+
|
|
3
|
+import com.dashitech.migration.BaseTask;
|
|
4
|
+import com.dashitech.migration.core.FieldMapper;
|
|
5
|
+import org.apache.commons.logging.Log;
|
|
6
|
+import org.apache.commons.logging.LogFactory;
|
|
7
|
+import org.springframework.stereotype.Component;
|
|
8
|
+import org.springframework.transaction.annotation.Transactional;
|
|
9
|
+
|
|
10
|
+/**
|
|
11
|
+ * Created by CX on 2024/10/10.
|
|
12
|
+ */
|
|
13
|
+@Component
|
|
14
|
+public class AttachmentTask extends BaseTask {
|
|
15
|
+
|
|
16
|
+ public static Log log = LogFactory.getLog(AttachmentTask.class);
|
|
17
|
+
|
|
18
|
+ @Override
|
|
19
|
+ @Transactional(rollbackFor = Exception.class)
|
|
20
|
+ public void start() {
|
|
21
|
+ log.info(" *** AttachmentTask start开始 *** ");
|
|
22
|
+ FieldMapper mapper = new FieldMapper();
|
|
23
|
+
|
|
24
|
+ //clear释放内存
|
|
25
|
+ mapper.clear();
|
|
26
|
+ }
|
|
27
|
+
|
|
28
|
+ @Override
|
|
29
|
+ public FieldMapper loadCache() {
|
|
30
|
+ log.info(" *** AttachmentTask loadCache开始 *** ");
|
|
31
|
+ FieldMapper mapper = new FieldMapper();
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+ return mapper;
|
|
35
|
+ }
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+}
|