I have a custom jdbc authentication handler that I have configured as a @Bean in my configuration class.
When I deploy my war, there are no errors, but I get this error:
CAS is configured to accept a static list of credentials for authentication. While this is generally useful for demo purposes, it is STRONGLY recommended that you DISABLE this authentication method (by setting 'cas.authn.accept.users' to a blank value) and switch to a mode that is more suitable for production.
I look in the docs, and I see that I need to add this to my cas.properties file:
But I still get that error in the logs.
How do I set my AuthenticationHander as the one to use?
Michael MacEachran