是否可以开始限制某些 URL 的 SAML2 身份验证过程?所以我的想法是使用像 /saml2login 这样的 URL 来启动所有 SAML 身份验证过程。
我已经尝试过类似的东西:
httpSecurity.authorizeRequests()
.antMatchers("/saml2login").authenticated()
.and()
.saml2Login()
.relyingPartyRegistrationRepository(
new InMemoryRelyingPartyRegistrationRepository(
getSaml2AuthenticationConfiguration()
)
);
但它不起作用