• ClassUtil


    package com.izkml.mlyun.core.tool.util;
    
    import org.springframework.core.BridgeMethodResolver;
    import org.springframework.core.DefaultParameterNameDiscoverer;
    import org.springframework.core.MethodParameter;
    import org.springframework.core.ParameterNameDiscoverer;
    import org.springframework.core.annotation.AnnotatedElementUtils;
    import org.springframework.core.annotation.SynthesizingMethodParameter;
    import org.springframework.web.method.HandlerMethod;
    
    import java.lang.annotation.Annotation;
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Method;
    
    /**
     * 类工具类
     *
     * @author L.cm
     */
    public class ClassUtil extends org.springframework.util.ClassUtils {
    
       private static final ParameterNameDiscoverer PARAMETER_NAME_DISCOVERER = new DefaultParameterNameDiscoverer();
    
       /**
        * 获取方法参数信息
        *
        * @param constructor    构造器
        * @param parameterIndex 参数序号
        * @return {MethodParameter}
        */
       public static MethodParameter getMethodParameter(Constructor<?> constructor, int parameterIndex) {
          MethodParameter methodParameter = new SynthesizingMethodParameter(constructor, parameterIndex);
          methodParameter.initParameterNameDiscovery(PARAMETER_NAME_DISCOVERER);
          return methodParameter;
       }
    
       /**
        * 获取方法参数信息
        *
        * @param method         方法
        * @param parameterIndex 参数序号
        * @return {MethodParameter}
        */
       public static MethodParameter getMethodParameter(Method method, int parameterIndex) {
          MethodParameter methodParameter = new SynthesizingMethodParameter(method, parameterIndex);
          methodParameter.initParameterNameDiscovery(PARAMETER_NAME_DISCOVERER);
          return methodParameter;
       }
    
       /**
        * 获取Annotation
        *
        * @param method         Method
        * @param annotationType 注解类
        * @param <A>            泛型标记
        * @return {Annotation}
        */
       public static <A extends Annotation> A getAnnotation(Method method, Class<A> annotationType) {
          Class<?> targetClass = method.getDeclaringClass();
          // The method may be on an interface, but we need attributes from the target class.
          // If the target class is null, the method will be unchanged.
          Method specificMethod = ClassUtil.getMostSpecificMethod(method, targetClass);
          // If we are dealing with method with generic parameters, find the original method.
          specificMethod = BridgeMethodResolver.findBridgedMethod(specificMethod);
          // 先找方法,再找方法上的类
          A annotation = AnnotatedElementUtils.findMergedAnnotation(specificMethod, annotationType);
          ;
          if (null != annotation) {
             return annotation;
          }
          // 获取类上面的Annotation,可能包含组合注解,故采用spring的工具类
          return AnnotatedElementUtils.findMergedAnnotation(specificMethod.getDeclaringClass(), annotationType);
       }
    
       /**
        * 获取Annotation
        *
        * @param handlerMethod  HandlerMethod
        * @param annotationType 注解类
        * @param <A>            泛型标记
        * @return {Annotation}
        */
       public static <A extends Annotation> A getAnnotation(HandlerMethod handlerMethod, Class<A> annotationType) {
          // 先找方法,再找方法上的类
          A annotation = handlerMethod.getMethodAnnotation(annotationType);
          if (null != annotation) {
             return annotation;
          }
          // 获取类上面的Annotation,可能包含组合注解,故采用spring的工具类
          Class<?> beanType = handlerMethod.getBeanType();
          return AnnotatedElementUtils.findMergedAnnotation(beanType, annotationType);
       }
    
    }
    
    认真可以把事情做对,而用心却可以做到完美
  • 相关阅读:
    volatile
    public && protected && private
    class && struct
    jQuery-实现全选与反选
    .NET Fframework
    C# 中的单精度与双精度区别
    C#中的集合(HashTable与Array类)
    c#中的数组、ArrayList、List区别
    C#属性和字段区别、get与set用法
    C#中委托和事件
  • 原文地址:https://www.cnblogs.com/fangh816/p/13295481.html
Copyright © 2020-2023  润新知