Today the developer needs to register all service they wanna use, including the services provided by our libraries.
{code} static { ServiceModuleRegistry.getInstance().registerServiceModule("keycloak", KeyCloakService.class , "http" ); ServiceModuleRegistry.getInstance().registerServiceModule("echo-service", EchoServiceModule.class , "keycloak", "http" ); } {code}
I wanna replace this by annotation processor |
|