Hi Curtis, Ah I missed to mention something,
when you tries to override a Bean inside a Configuration file, whether or not is actually override success depends on the load sequence. Which one load last will be the actual bean to be used. See: https://stackoverflow.com/questions/11833804/overriding-bean-configuration-in-spring To make sure your defined bean takes effect, you might need to use the @Import notation. So you could try out the following: =========================================================================================== @Configuration("myDomainX509AuthenticationWebflowConfiguration ") @EnableConfigurationProperties(CasConfigurationProperties.class) @Slf4j @Import(X509AuthenticationWebflowConfiguration.class) public class MyDomainX509AuthenticationWebflowConfiguration implements CasWebflowExecutionPlanConfigurer { .......... =========================================================================================== If this still doens't work, then maybe you might needs to stick to your solution then... Cheers! - Andy -- - Website: https://apereo.github.io/cas - Gitter Chatroom: https://gitter.im/apereo/cas - List Guidelines: https://goo.gl/1VRrw7 - Contributions: https://goo.gl/mh7qDG --- You received this message because you are subscribed to the Google Groups "CAS Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/a/apereo.org/d/msgid/cas-user/928e1c39-83a2-44f1-b146-df43846da1a0%40apereo.org.
