@SpringBootApplication
@Controller
@EnableCasClient
public class MyApplication
In addition, configured web security using below code,
@Configuration
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeHttpRequests((authz) -> authz
.anyRequest().authenticated()
);
}
}Then implemented a Spring Rest controller on /test URL. How ever, the CAS filters are not invoked and the redirection to CAS server didn't happen. Please note, I have not added any web.xml filters since I m using auto configuration via spring boot.Please help me to understand what is missing here. Mn
Regards,
Anu