logger.info("Action scan completely,create {} action in {} ms", newActions,
System.currentTimeMillis() - start);
}
protected ClassLoaderInterface getClassLoaderInterface() {
if (isReloadEnabled()) return new ClassLoaderInterfaceDelegate(reloadingClassLoader);
else {
ClassLoaderInterface classLoaderInterface = null;
ActionContext ctx = ActionContext.getContext();
if (ctx != null) classLoaderInterface = (ClassLoaderInterface) ctx
.get(ClassLoaderInterface.CLASS_LOADER_INTERFACE);
return (ClassLoaderInterface) ObjectUtils.defaultIfNull(classLoaderInterface,
new ClassLoaderInterfaceDelegate(getClassLoader()));
}
}