Browse Source

本地缓存添加

zhangqiankun 3 years ago
parent
commit
91f53973dd

+ 52 - 0
src/main/java/com/persagy/transfer/cache/LocalCache.java

@@ -0,0 +1,52 @@
+package com.persagy.transfer.cache;
+
+import java.util.Map;
+import java.util.Set;
+import java.util.concurrent.ConcurrentHashMap;
+
+import com.persagy.transfer.constant.SwitchConstant;
+import com.persagy.transfer.pojo.dto.WdclassRelPersagy;
+
+import cn.hutool.core.collection.ConcurrentHashSet;
+
+/**
+ * 本地数据缓存
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021年9月16日 下午10:45:09
+ */
+public class LocalCache {
+
+	/** 本地设备类编码缓存 */
+	public static Set<String> BDTP_CLASS_CODE_BY_WD = new ConcurrentHashSet<String>(32);
+	
+	/**
+	 * 本地设备类编码对象缓存
+	 * 
+	 * key: BDTP-classCode + WD_buildCode,_ 作为分隔符
+	 * value: 设备类中间表对象
+	 */
+	public static Map<String, WdclassRelPersagy> CLASS_CODE_MAPPING_BY_WD = new ConcurrentHashMap<String, WdclassRelPersagy>(32);
+	
+	/**
+	 * 本地项目映射缓存
+	 * 
+	 * key: BDTP-projectId
+	 * value: WD-projectId
+	 */
+	public static Map<String, String> PROJECT_MAPPING_BY_WD = new ConcurrentHashMap<String, String>();
+
+	/**
+	 * CLASS_CODE_MAPPING_BY_WD 的缓存key生成
+	 * 
+	 * @company persagy 
+	 * @author zhangqiankun
+	 * @date 2021年9月16日 下午11:07:22
+	 */
+	public static String getWDCacheKey(String classCode, String wdBuildCode) {
+		return classCode + SwitchConstant.UNDERLINE + wdBuildCode;
+	}
+	
+}

+ 38 - 0
src/main/java/com/persagy/transfer/controller/CommonController.java

@@ -0,0 +1,38 @@
+package com.persagy.transfer.controller;
+
+import javax.servlet.http.HttpServletRequest;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.persagy.common.utils.ResponseResult;
+import com.persagy.common.utils.ResponseUtil;
+import com.persagy.transfer.handle.CommonHandler;
+
+/**
+ * 通用controller
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021年9月17日 上午10:02:22
+ */
+@RestController
+public class CommonController {
+
+    @Autowired
+    private CommonHandler commonHandler;
+    
+    @RequestMapping("/refreshCache")
+    public ResponseResult refreshCache(HttpServletRequest request) {
+		// 生成设备类编码缓存
+		this.commonHandler.createWDClassCache();
+		
+		// 生成项目ID缓存
+		this.commonHandler.createWDProjectCache();
+		
+        return ResponseUtil.successResult("本地缓存刷新成功");
+    }
+    
+}

+ 80 - 0
src/main/java/com/persagy/transfer/handle/CommonHandler.java

@@ -0,0 +1,80 @@
+package com.persagy.transfer.handle;
+
+import java.util.List;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Component;
+
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.persagy.common.utils.StringUtil;
+import com.persagy.transfer.cache.LocalCache;
+import com.persagy.transfer.pojo.dto.WdclassRelPersagy;
+import com.persagy.transfer.pojo.dto.WdprojRelPersagyproj;
+import com.persagy.transfer.service.IWdclassRelPersagyService;
+import com.persagy.transfer.service.IWdprojRelPersagyprojService;
+
+import cn.hutool.core.collection.CollectionUtil;
+
+/**
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021年9月17日 上午10:13:53
+ */
+@Component
+public class CommonHandler {
+
+    @Autowired
+    private IWdclassRelPersagyService wdclassRelPersagyService;
+    
+    @Autowired
+    private IWdprojRelPersagyprojService wdprojRelPersagyprojService;
+    
+	/**
+	 * 创建万达的本地类型编码缓存
+	 * 
+	 * @company persagy 
+	 * @author zhangqiankun
+	 * @date 2021年9月16日 下午11:04:07
+	 */
+	public void createWDProjectCache() {
+		// 先清除缓存
+		LocalCache.BDTP_CLASS_CODE_BY_WD.clear();
+		LocalCache.CLASS_CODE_MAPPING_BY_WD.clear();
+		
+		// 缓存添加
+		LambdaQueryWrapper<WdclassRelPersagy> queryWrapper = new WdclassRelPersagy.BuilderQueryWrapper().builder();
+    	List<WdclassRelPersagy> list = this.wdclassRelPersagyService.list(queryWrapper);
+    	if (CollectionUtil.isNotEmpty(list)) {
+    		for (WdclassRelPersagy wdclassRelPersagy : list) {
+    			LocalCache.BDTP_CLASS_CODE_BY_WD.add(wdclassRelPersagy.getClassCode());
+    			LocalCache.CLASS_CODE_MAPPING_BY_WD.put(LocalCache.getWDCacheKey(wdclassRelPersagy.getClassCode(), wdclassRelPersagy.getWdBuildCode()), wdclassRelPersagy);
+			}
+		}
+	}
+
+	/**
+	 * 创建万达的项目映射缓存
+	 * 
+	 * @company persagy 
+	 * @author zhangqiankun
+	 * @date 2021年9月16日 下午11:04:07
+	 */
+	public void createWDClassCache() {
+		// 先清除缓存
+		LocalCache.PROJECT_MAPPING_BY_WD.clear();
+		
+		// 本地缓存添加
+		LambdaQueryWrapper<WdprojRelPersagyproj> queryWrapper = new WdprojRelPersagyproj.BuilderQueryWrapper().builder();
+    	List<WdprojRelPersagyproj> list = this.wdprojRelPersagyprojService.list(queryWrapper);
+    	if (CollectionUtil.isNotEmpty(list)) {
+    		for (WdprojRelPersagyproj wdprojRelPersagyproj : list) {
+    			if (StringUtil.isAllNotBlank(wdprojRelPersagyproj.getPersagyProjectid(), wdprojRelPersagyproj.getWdProjectid())) {
+    				LocalCache.PROJECT_MAPPING_BY_WD.put(wdprojRelPersagyproj.getPersagyProjectid(), wdprojRelPersagyproj.getWdProjectid());
+    			}
+			}
+    	}
+	}
+	
+}

+ 37 - 0
src/main/java/com/persagy/transfer/init/StartInit.java

@@ -0,0 +1,37 @@
+package com.persagy.transfer.init;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.CommandLineRunner;
+import org.springframework.stereotype.Component;
+
+import com.persagy.transfer.handle.CommonHandler;
+
+import lombok.extern.slf4j.Slf4j;
+
+/**
+ * 项目初始化时,进行部分操作
+ * 
+ * @version 1.0.0
+ * @company persagy 
+ * @author zhangqiankun
+ * @date 2021年9月16日 下午10:43:20
+ */
+@Slf4j
+@Component
+public class StartInit implements CommandLineRunner {
+	
+    @Autowired
+    private CommonHandler commonHandler;
+    
+	@Override
+	public void run(String... args) throws Exception {
+		// 生成设备类编码缓存
+		this.commonHandler.createWDClassCache();
+		
+		// 生成项目ID缓存
+		this.commonHandler.createWDProjectCache();
+		
+		log.info("项目初始化成功...");
+	}
+
+}