I made a custom SPI for my keycloak server and now I have to configure it on the Admin console.
I added the SPI as a module, with manual installation, so I have it on modules/{package-name}/main, with the module.xml; I have also put the on standalone.xml, and the also in the keycloak-server subsystem.
After all this configuration, I then go to the admin console to configure the custom user provider and it does not appear in the list.
What can I do?
My finally solution was applying the example from
https://github.com/thomasdarimont/keycloak-user-storage-provider-demo
and changing the UserRepository for an EntityManager to connect with the database.