Skip to content

Instantly share code, notes, and snippets.

@aarchilla84
Created October 31, 2015 22:59
Show Gist options
  • Save aarchilla84/8450be64bcaed53410b6 to your computer and use it in GitHub Desktop.
Save aarchilla84/8450be64bcaed53410b6 to your computer and use it in GitHub Desktop.
JBoss modules - Service Loader
ServiceLoader<IPluginService> services = Module.getCallerModule().loadService(IPluginService.class);
for(IPluginService service:services){
// Para cada uno de ellos ejecutamos una acción
log.info("MSG: {}", service.getMessage());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment