I need to read classes contained in a Java package. Those classes are in classpath. I need to do this task from a Java program directly. Do you know a simple way to do?
List<Class> classes = readClassesFrom("my.package")
|
I need to read classes contained in a Java package. Those classes are in classpath. I need to do this task from a Java program directly. Do you know a simple way to do?
| |||||||||||
feedback
|
|
If you have Spring in you classpath then the following will do it. Find all classes in a package that are annotated with XmlRootElement:
| ||||
|
feedback
|
|
You could use the Reflections Project described here: http://code.google.com/p/reflections/ It's quite complete and easy to use. Brief description from the above website:
Example:
| ||||
|
feedback
|
|
I use this one, it works with files or jar archives
| |||||
feedback
|
|
I happen to have implemented it, and it works in most cases. Since it is long, I put it in a file here. The idea is to find the location of the class source file which is available in most cases (a known exception are JVM class files -- as far as I've tested). If the code is in a directory, scan through all files and only spot class files. If the code is in a JAR file, scan all entries. This method can only be used when:
I've tested the program only for my regular usage, so it may still have problem. I hope this helps. | |||||||||||||||||
feedback
|
|
Spring has implemented an excellent classpath search function in the PathMatchingResourcePatternResolver. If you use the classpath*: prefix, you can find all the resources, including classes in a given hierarchy, and even filter them if you want. Then you can use the children of AbstractTypeHierarchyTraversingFilter, AnnotationTypeFilter and AssignableTypeFilter to filter those resources either on class level annotations or on interfaces they implement. | |||
|
feedback
|
|
eXtcos looks promising. Imagine you want to find all the classes that:
With eXtcos this is as simple as
| ||||
|
feedback
|
|
That functionality is still suspiciously missing from the Java reflection API as far as I know. You can get a package object by just doing this:
But as you probably noticed, that won't let you list the classes in that package. As of right now, you have to take sort of a more filesystem-oriented approach. I found some sample implementations in this post: http://forums.sun.com/thread.jspa?threadID=341935 I'm not 100% sure these methods will work when your classes are buried in JAR files, but I hope one of those does it for you. I agree with @skaffman...if you have another way of going about this, I'd recommend doing that instead. | |||||||
feedback
|
|
Brent - the reason the association is one way has to do with the fact that any class on any component of your CLASSPATH can declare itself in any package (except for java/javax). Thus there just is no mapping of ALL the classes in a given "package" because nobody knows nor can know. You could update a jar file tomorrow and remove or add classes. It's like trying to get a list of all people named John/Jon/Johan in all the countries of the world - none of us is omniscient therefore none of us will ever have the correct answer. | |||||
feedback
|
|
Back when applets were common place, one might have a URL on the classpath. When the classloader required a class, it would search all the locations on the classpath, including http resources. Because you can have things like URLs and directories on the classpath, there is no easy way to get a definitive list of the classes. However, you can get pretty close. Some of the Spring libraries are doing this now. You can get all the jar's on the classpath, and open them up like files. You can then take this list of files, and create a data structure containing your classes. | |||
|
feedback
|
|
Java 1.6.0_24:
This solution was tested within the EJB environment. | ||||
|
feedback
|
.
Also for annotations:
| ||||
|
feedback
|
|
Usually this is done using the process called classpath scanning. In general class loaders do not allow for scanning through all the classes on the classpath. But usually the only used class loader is UrlClassLoader from which we can retrieve the list of directories and jar files (see getURLs) and open them one by one to list classes available in given package. This approach is implemented by libraries like Scannotation or Reflections. Another approach is to use Java Pluggable Annotation Processing API to write annotation processor which will be executed during the compilation process, will collect all classes in given package and build the index file for runtime use. The above technique is implemented in Evo Class Index library. | ||||
|
feedback
|