|
|
@@ -1,11 +1,18 @@
|
|
|
package com.xintong.visualinspection.util;
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
+
|
|
|
+import com.xintong.SystemInit;
|
|
|
import com.xintong.visualinspection.bean.Constant;
|
|
|
import com.xintong.visualinspection.bean.Organ;
|
|
|
import com.xintong.visualinspection.bean.User;
|
|
|
+import com.xintong.visualinspection.service.ConstantService;
|
|
|
+import com.xintong.visualinspection.service.DepartmentService;
|
|
|
+import com.xintong.visualinspection.service.UserService;
|
|
|
|
|
|
public class CacheUtil {
|
|
|
|
|
|
@@ -15,6 +22,35 @@ public class CacheUtil {
|
|
|
|
|
|
public static Map<String,Constant> codeMap = new HashMap<String,Constant>();
|
|
|
|
|
|
+ private static final org.slf4j.Logger logger = LoggerFactory.getLogger(CacheUtil.class);
|
|
|
+
|
|
|
+ public static void refreshCodeMap(ConstantService constantService){
|
|
|
+ //加载用户信息
|
|
|
+ List<Constant> constantList = constantService.getAll();
|
|
|
+ for(Constant c:constantList){
|
|
|
+ CacheUtil.codeMap.put(c.getCode_flag()+"_"+c.getCode_value(), c);
|
|
|
+ }
|
|
|
+ logger.info("加载用户信息成功,数据数:"+CacheUtil.userMap.size());
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void refreshUserMap(UserService userService){
|
|
|
+ //加载用户信息
|
|
|
+ List<User> userList = userService.getAll();
|
|
|
+ for(User user:userList){
|
|
|
+ CacheUtil.userMap.put(new Long(user.getId()), user);
|
|
|
+ }
|
|
|
+ logger.info("加载用户信息成功,数据数:"+CacheUtil.userMap.size());
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void refreshDeptMap(DepartmentService deptService){
|
|
|
+ //加载部门信息
|
|
|
+ List<Organ> deptList = deptService.getAll();
|
|
|
+ for(Organ organ:deptList){
|
|
|
+ CacheUtil.deptMap.put(new Long(organ.getId()), organ);
|
|
|
+ }
|
|
|
+ logger.info("加载部门信息成功,数据数:"+CacheUtil.deptMap.size());
|
|
|
+ }
|
|
|
+
|
|
|
public static User getUserFromMap(Long key){
|
|
|
if(key == null) return null;
|
|
|
return CacheUtil.userMap.get(key);
|