标签:chm ctc 文件 使用 cep invoke throws exception except
前言:这篇博客主要是为了后续的获取SpringMVC中的全部请求URL做的准备。
public class AnnotationHelper { private static final AnnotationHelper helper = new AnnotationHelper(); protected AnnotationHelper() { } public static AnnotationHelper getInstance() { return helper; } /** * 得到类上面的注解信息 * @param scannerClass * @param allowInjectClass * @return */ public Annotation getClassAnnotation(Class<?> scannerClass , Class<? extends Annotation> allowInjectClass) { if(!scannerClass.isAnnotationPresent(allowInjectClass)) { return null; } return scannerClass.getAnnotation(allowInjectClass); } /** * 等到方法级别注解的信息 * @param scannerClass:需要被扫描的class文件 * @param allowInjectClass:注解的文件 * @return */ public List<Annotation> getMethodAnnotation(Class<?> scannerClass , Class<? extends Annotation> allowInjectClass) { List<Annotation> annotations = new ArrayList<Annotation>(); for(Method method : scannerClass.getDeclaredMethods()) { if(!method.isAnnotationPresent(allowInjectClass)) { continue; } annotations.add(method.getAnnotation(allowInjectClass)); } return annotations; } /** * 使用Java反射得到注解的信息 * @param annotation * @param methodName * @return * @throws NoSuchMethodException * @throws SecurityException * @throws IllegalAccessException * @throws IllegalArgumentException * @throws InvocationTargetException */ public Object getAnnotationInfo(Annotation annotation , String methodName) throws NoSuchMethodException, SecurityException, IllegalAccessException, IllegalArgumentException, InvocationTargetException { if(annotation == null) { return null; } Method method = annotation.getClass().getDeclaredMethod(methodName, null); return method.invoke(annotation, null); } }
要判断是否存在指定的Java注解,只需要调用isAnnotationPresent方法,就能够实现是否存在制定的注解。那么,方法以及类上的注解判断,就能够轻松搞定。那么,接下来,就是要获取注解的详细信息。通过调用getAnnotation方法,就能够获取得到该注解,然后通过Java的反射,就能够获取得到该注解中指定方法的结果值。
标签:chm ctc 文件 使用 cep invoke throws exception except
原文地址:http://www.cnblogs.com/2013jiutian/p/7294053.html