private Class<?> loadClass(String className)
throws ClassNotFoundException {
try {
return Class.forName(className);
} catch (ClassNotFoundException e) {
final ClassLoaderRepository clr =
getClassLoaderRepository();
if (clr == null) throw new ClassNotFoundException(className);
return clr.loadClass(className);
}
}
RequiredModelMBean.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:jdk7-jdk
作者:
评论列表
文章目录