I\'m trying to run example app from:
https://github.com/keycloak/keycloak-quickstarts/tree/latest/app-springboot
I\'m getting error:
********
Thomas answer did work for me. The keycloak spring boot properties class had to be enabled manually though, by annotating the Application class like this:
@EnableConfigurationProperties(KeycloakSpringBootProperties.class)
Furthermore the custom keycloak spring boot config resolver bean must be overriden explicitly.
@Bean
@Primary
public KeycloakConfigResolver keycloakConfigResolver(KeycloakSpringBootProperties properties) {
return new MyKeycloakSpringBootConfigResolver(properties);
}