开发者

Classpaths and reflection

In a project that makes heavy use of reflection to select classes based on environment, is th开发者_运维问答ere a way to determine what libraries to include in the build? At the moment, taking a library out of the project is a gamble, but sticking with the current plan of "include everything, it's the only way to be sure" makes the whole thing bloated and unwieldy.


Unfortunately there isn't as this would be difficult for classes loaded dynamically, especially using factories where class name is passed as Strings.

If you jvm supports the -Xcomp and -Xbatch options along with the -XX:CompileThreshold, you can use it in your development and testing environment. It will increase your startup time though.

These options will just make your job easier but you will still probably have to test you thoroughly.


You can use JavaAssist lib to include new classpaths or modify classes at runtime.

Here is a brief tutorial

You can register a directory name as the class search path. For example, the following code adds a directory /usr/local/javalib to the search path:

  ClassPool pool = ClassPool.getDefault();
  pool.insertClassPath("/usr/local/javalib");

The search path that the users can add is not only a directory but also a URL:

  ClassPool pool = ClassPool.getDefault();
  ClassPath cp = new URLClassPath("www.javassist.org", 80, "/java/", "org.javassist.");
  pool.insertClassPath(cp);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜