在 applicationContext-security.xml 中,我已将这两个自定义身份验证提供程序添加到身份验证管理器中。
<authentication-manager>
<authentication-provider ref="daoAuthenticationProvider1"/>
<authentication-provider ref="daoAuthenticationProvider2"/>
</authentication-manager>
如果我想在某个条件(例如 INVALID_PASSWORD)后退出第一个提供者并且不想转到下一个提供者,需要抛出什么异常?
我知道这不是 Spring 没有意义的预期行为,但有可能吗?