资 源 简 介
Version 0.1
Java Annotation Discovery Library
Annovention is a Java Annotation discovery library. It works on subscribe-and-listen pattern. It"s fully customizable and you can easily extend it. It comes with a ClasspathDiscoverer (extends Discoverer) class which scans your classpath for possible Annotations. You need to implement AnnotationDiscoveryListener (Class/Field/Method) and then register this listener to Discoverer class.
Annovention uses Javassist (http://labs.jboss.com/javassist/) library to read class files and discover annotations from them. This approach doesn"t need to load classes in memory and hence is very effective. On the similar line, to keep the memory consumption low, listeners will be notified with the names of classes, field, methods and annotations. You can use Java Reflection to instantiate the classes. (remember Class.forName method?)
Read a 5 minute starter here: h