for (Class<?> explorerGuiceModuleClass : classpathScanner.getClasses()) {
try {
ExplorerGuiceModule guiceModAnnotation = explorerGuiceModuleClass.getAnnotation(ExplorerGuiceModule.class);
if (guiceModAnnotation.jerseyPackagePath() != null &&
! guiceModAnnotation.jerseyPackagePath().isEmpty()) {
jerseyPkgPath += ";" + guiceModAnnotation.jerseyPackagePath();
}
LOG.info("ExplorerGuiceModule init " + explorerGuiceModuleClass.getName());
Module expGuiceModule = (Module) explorerGuiceModuleClass.newInstance();