/**
* Load a class using the default loader repository
**/
Class loadClass(String className)
throws ClassNotFoundException {
try {
return Class.forName(className);
} catch (ClassNotFoundException e) {
final ClassLoaderRepository clr =
MBeanServerFactory.getClassLoaderRepository(bottomMBS);
if (clr == null) throw new ClassNotFoundException(className);
return clr.loadClass(className);
}
}
CommunicatorServer.java 文件源码
java
阅读 21
收藏 0
点赞 0
评论 0
项目:jdk7-jdk
作者:
评论列表
文章目录