All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.es.plus.adapter.util.ClassUtils Maven / Gradle / Ivy

There is a newer version: 0.3.941
Show newest version
package com.es.plus.adapter.util;


import com.es.plus.adapter.exception.EsException;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
import org.springframework.core.DefaultParameterNameDiscoverer;
import org.springframework.util.CollectionUtils;

import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.lang.reflect.Parameter;
import java.util.Arrays;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.stream.Stream;

import static java.util.function.Function.identity;
import static java.util.stream.Collectors.toCollection;
import static java.util.stream.Collectors.toMap;


@Slf4j
public class ClassUtils {

    private static final Map, List> CLASS_FIELD_CACHE = new ConcurrentHashMap<>();
    
    private static final DefaultParameterNameDiscoverer discoverer = new DefaultParameterNameDiscoverer();
    
    /**
     * 代理 class 的名称
     */
    private static final List PROXY_CLASS_NAMES = Arrays.asList("net.sf.cglib.proxy.Factory"
            // cglib
            , "org.springframework.cglib.proxy.Factory"
            , "javassist.util.proxy.ProxyObject"
            // javassist
            , "org.apache.ibatis.javassist.util.proxy.ProxyObject");


    public static boolean isProxy(Class clazz) {
        if (clazz != null) {
            for (Class cls : clazz.getInterfaces()) {
                if (PROXY_CLASS_NAMES.contains(cls.getName())) {
                    return true;
                }
            }
        }
        return false;
    }

    /**
     * 

* 获取当前对象,如果是代理的获取本身 */ public static Class getClass(Class clazz) { return isProxy(clazz) ? clazz.getSuperclass() : clazz; } /** * 获取该类的所有属性列表 * * @param clazz 类 * @return 所有属性列表 */ public static List getFieldList(Class clazz) { clazz = getClass(clazz); List fields = CLASS_FIELD_CACHE.get(clazz); if (CollectionUtils.isEmpty(fields)) { synchronized (CLASS_FIELD_CACHE) { fields = doGetFieldList(clazz); CLASS_FIELD_CACHE.put(clazz, fields); } } return fields; } private static List doGetFieldList(Class clazz) { if (clazz.getSuperclass() != null) { List fieldList = Stream.of(clazz.getDeclaredFields()) /* 过滤静态属性 */ .filter(field -> !Modifier.isStatic(field.getModifiers())) /* 过滤 transient关键字修饰的属性 */ .filter(field -> !Modifier.isTransient(field.getModifiers())) .collect(toCollection(LinkedList::new)); /* 处理父类字段 */ Class superClass = clazz.getSuperclass(); /* 排除重载属性 */ return excludeOverrideSuperField(fieldList, getFieldList(superClass)); } else { return Collections.emptyList(); } } public static List excludeOverrideSuperField(List fieldList, List superFieldList) { // 子类属性 Map fieldMap = fieldList.stream().collect(toMap(Field::getName, identity())); superFieldList.stream().filter(field -> !fieldMap.containsKey(field.getName())).forEach(fieldList::add); return fieldList; } public static Class toClassConfident(String name) { try { return Class.forName(name, false, getDefaultClassLoader()); } catch (ClassNotFoundException e) { try { return Class.forName(name); } catch (ClassNotFoundException ex) { throw new EsException("es ClassUtils class not found", e); } } } public static ClassLoader getDefaultClassLoader() { ClassLoader cl = null; try { cl = Thread.currentThread().getContextClassLoader(); } catch (Throwable ex) { // Cannot access thread context ClassLoader - falling back... } if (cl == null) { // No thread context class loader -> use class loader of this class. cl = ClassUtils.class.getClassLoader(); if (cl == null) { // getClassLoader() returning null indicates the bootstrap ClassLoader try { cl = ClassLoader.getSystemClassLoader(); } catch (Throwable ex) { // Cannot access system ClassLoader - oh well, maybe the caller can live with null... } } } return cl; } @SneakyThrows public static String getParamValue(String name, Method method, Object[] args,Object target) { String param = null; String[] parameterNames; boolean match = Arrays.stream(method.getParameters()).anyMatch(Parameter::isNamePresent); if (match) { parameterNames = Arrays.stream(method.getParameters()).map(Parameter::getName).toArray(String[]::new); } else { Method method1 = target.getClass().getMethod(method.getName(), method.getParameterTypes()); parameterNames = discoverer.getParameterNames(method1); } if (parameterNames != null) { for (int i = 0; i < parameterNames.length; i++) { String parameterName = parameterNames[i]; if (parameterName != null) { if (parameterName.equals(name)) { Object arg = args[i]; if (arg==null){ throw new EsException("index param is require"); } param = arg.toString(); break; } } } } else { log.warn("getParamValue value is null"); } return param; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy