Search in sources :

Example 1 with AbstractDictMap

use of com.ikoori.vip.common.constant.dictmap.base.AbstractDictMap in project vip by guangdada.

the class Contrast method contrastObj.

/**
 * 比较两个对象pojo1和pojo2,并输出不一致信息
 *
 * @author stylefeng
 * @Date 2017/5/9 19:34
 */
public static String contrastObj(String dictClass, String key, Object pojo1, Map<String, String> pojo2) {
    AbstractDictMap dictMap = DictMapFactory.createDictMap(dictClass);
    String str = parseMutiKey(dictMap, key, pojo2) + separator;
    try {
        Class clazz = pojo1.getClass();
        Field[] fields = pojo1.getClass().getDeclaredFields();
        int i = 1;
        for (Field field : fields) {
            if ("serialVersionUID".equals(field.getName())) {
                continue;
            }
            PropertyDescriptor pd = new PropertyDescriptor(field.getName(), clazz);
            Method getMethod = pd.getReadMethod();
            Object o1 = getMethod.invoke(pojo1);
            Object o2 = pojo2.get(StrKit.firstCharToLowerCase(getMethod.getName().substring(3)));
            if (o1 == null || o2 == null) {
                continue;
            }
            if (o1 instanceof Date) {
                o1 = DateUtil.getDay((Date) o1);
            } else if (o1 instanceof Integer) {
                o2 = Integer.parseInt(o2.toString());
            }
            if (!o1.toString().equals(o2.toString())) {
                if (i != 1) {
                    str += separator;
                }
                String fieldName = dictMap.get(field.getName());
                String fieldWarpperMethodName = dictMap.getFieldWarpperMethodName(field.getName());
                if (fieldWarpperMethodName != null) {
                    Object o1Warpper = DictFieldWarpperFactory.createFieldWarpper(o1, fieldWarpperMethodName);
                    Object o2Warpper = DictFieldWarpperFactory.createFieldWarpper(o2, fieldWarpperMethodName);
                    str += "字段名称:" + fieldName + ",旧值:" + o1Warpper + ",新值:" + o2Warpper;
                } else {
                    str += "字段名称:" + fieldName + ",旧值:" + o1 + ",新值:" + o2;
                }
                i++;
            }
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    return str;
}
Also used : Field(java.lang.reflect.Field) AbstractDictMap(com.ikoori.vip.common.constant.dictmap.base.AbstractDictMap) PropertyDescriptor(java.beans.PropertyDescriptor) Method(java.lang.reflect.Method) Date(java.util.Date)

Example 2 with AbstractDictMap

use of com.ikoori.vip.common.constant.dictmap.base.AbstractDictMap in project vip by guangdada.

the class LogAop method handle.

private void handle(ProceedingJoinPoint point) throws Exception {
    // 获取拦截的方法名
    Signature sig = point.getSignature();
    MethodSignature msig = null;
    if (!(sig instanceof MethodSignature)) {
        throw new IllegalArgumentException("该注解只能用于方法");
    }
    msig = (MethodSignature) sig;
    Object target = point.getTarget();
    Method currentMethod = target.getClass().getMethod(msig.getName(), msig.getParameterTypes());
    String methodName = currentMethod.getName();
    // 如果当前用户未登录,不做日志
    ShiroUser user = ShiroKit.getUser();
    if (null == user) {
        return;
    }
    // 获取拦截方法的参数
    String className = point.getTarget().getClass().getName();
    Object[] params = point.getArgs();
    // 获取操作名称
    BussinessLog annotation = currentMethod.getAnnotation(BussinessLog.class);
    String bussinessName = annotation.value();
    String key = annotation.key();
    String dictClass = annotation.dict();
    StringBuilder sb = new StringBuilder();
    for (Object param : params) {
        sb.append(param);
        sb.append(" & ");
    }
    // 如果涉及到修改,比对变化
    String msg;
    if (bussinessName.indexOf("修改") != -1 || bussinessName.indexOf("编辑") != -1) {
        Object obj1 = LogObjectHolder.me().get();
        Map<String, String> obj2 = HttpKit.getRequestParameters();
        msg = Contrast.contrastObj(dictClass, key, obj1, obj2);
    } else {
        Map<String, String> parameters = HttpKit.getRequestParameters();
        AbstractDictMap dictMap = DictMapFactory.createDictMap(dictClass);
        msg = Contrast.parseMutiKey(dictMap, key, parameters);
    }
    LogManager.me().executeLog(LogTaskFactory.bussinessLog(user.getId(), bussinessName, className, methodName, msg));
}
Also used : MethodSignature(org.aspectj.lang.reflect.MethodSignature) AbstractDictMap(com.ikoori.vip.common.constant.dictmap.base.AbstractDictMap) Signature(org.aspectj.lang.Signature) MethodSignature(org.aspectj.lang.reflect.MethodSignature) ShiroUser(com.ikoori.vip.server.core.shiro.ShiroUser) Method(java.lang.reflect.Method) BussinessLog(com.ikoori.vip.common.annotion.log.BussinessLog)

Example 3 with AbstractDictMap

use of com.ikoori.vip.common.constant.dictmap.base.AbstractDictMap in project vip by guangdada.

the class Contrast method contrastObjByName.

/**
 * 比较两个对象pojo1和pojo2,并输出不一致信息
 *
 * @author stylefeng
 * @Date 2017/5/9 19:34
 */
public static String contrastObjByName(String dictClass, String key, Object pojo1, Map<String, String> pojo2) {
    AbstractDictMap dictMap = DictMapFactory.createDictMap(dictClass);
    String str = parseMutiKey(dictMap, key, pojo2) + separator;
    try {
        Class clazz = pojo1.getClass();
        Field[] fields = pojo1.getClass().getDeclaredFields();
        int i = 1;
        for (Field field : fields) {
            if ("serialVersionUID".equals(field.getName())) {
                continue;
            }
            String prefix = "get";
            int prefixLength = 3;
            if (field.getType().getName().equals("java.lang.Boolean")) {
                prefix = "is";
                prefixLength = 2;
            }
            Method getMethod = null;
            try {
                getMethod = clazz.getDeclaredMethod(prefix + StrKit.firstCharToUpperCase(field.getName()));
            } catch (java.lang.NoSuchMethodException e) {
                System.err.println("this className:" + clazz.getName() + " is not methodName: " + e.getMessage());
                continue;
            }
            Object o1 = getMethod.invoke(pojo1);
            Object o2 = pojo2.get(StrKit.firstCharToLowerCase(getMethod.getName().substring(prefixLength)));
            if (o1 == null || o2 == null) {
                continue;
            }
            if (o1 instanceof Date) {
                o1 = DateUtil.getDay((Date) o1);
            } else if (o1 instanceof Integer) {
                o2 = Integer.parseInt(o2.toString());
            }
            if (!o1.toString().equals(o2.toString())) {
                if (i != 1) {
                    str += separator;
                }
                String fieldName = dictMap.get(field.getName());
                String fieldWarpperMethodName = dictMap.getFieldWarpperMethodName(field.getName());
                if (fieldWarpperMethodName != null) {
                    Object o1Warpper = DictFieldWarpperFactory.createFieldWarpper(o1, fieldWarpperMethodName);
                    Object o2Warpper = DictFieldWarpperFactory.createFieldWarpper(o2, fieldWarpperMethodName);
                    str += "字段名称:" + fieldName + ",旧值:" + o1Warpper + ",新值:" + o2Warpper;
                } else {
                    str += "字段名称:" + fieldName + ",旧值:" + o1 + ",新值:" + o2;
                }
                i++;
            }
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    return str;
}
Also used : AbstractDictMap(com.ikoori.vip.common.constant.dictmap.base.AbstractDictMap) Method(java.lang.reflect.Method) Date(java.util.Date) Field(java.lang.reflect.Field)

Aggregations

AbstractDictMap (com.ikoori.vip.common.constant.dictmap.base.AbstractDictMap)3 Method (java.lang.reflect.Method)3 Field (java.lang.reflect.Field)2 Date (java.util.Date)2 BussinessLog (com.ikoori.vip.common.annotion.log.BussinessLog)1 ShiroUser (com.ikoori.vip.server.core.shiro.ShiroUser)1 PropertyDescriptor (java.beans.PropertyDescriptor)1 Signature (org.aspectj.lang.Signature)1 MethodSignature (org.aspectj.lang.reflect.MethodSignature)1