CX 5 月之前
父节点
当前提交
574373a6ae

+ 2 - 0
src/main/java/com/dashitech/migration/StartApplication.java

@@ -31,6 +31,8 @@ public class StartApplication {
31 31
         SqlTask task = null;
32 32
         task = SpringContextHolder.getBean("dictionaryTask");
33 33
         task.start();
34
+//        task = SpringContextHolder.getBean("attachmentTask");
35
+//        task.start();
34 36
         task = SpringContextHolder.getBean("hospitalTask");
35 37
         task.start();
36 38
 //        task = SpringContextHolder.getBean("hospitalConfigTask");

+ 38 - 0
src/main/java/com/dashitech/migration/task/other/AttachmentTask.java

@@ -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
+}