作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在其他一些帖子之后,我尝试覆盖 spring-security 处理程序的身份验证成功方法,但它从未被调用。我的代码如下所示:src/groovy/mypackage/MyAuthenticationSuccessHandler.groovy
:
package mypackage
import org.springframework.security.core.Authentication
import org.springframework.security.web.authentication.SavedRequestAwareAuthenticationSuccessHandler
import javax.servlet.ServletException
import javax.servlet.http.HttpServletRequest
import javax.servlet.http.HttpServletResponse
public class MyAuthenticationSuccessHandler extends SavedRequestAwareAuthenticationSuccessHandler {
public MyAuthenticationSuccessHandler() {
println("constructed!")
}
@Override
public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) throws ServletException, IOException {
println("override called")
super.onAuthenticationSuccess(request, response, authentication);
}
}
authenticationSuccessHandler(MyAuthenticationSuccessHandler) {
def conf = SpringSecurityUtils.securityConfig
requestCache = ref('requestCache')
defaultTargetUrl = conf.successHandler.defaultTargetUrl
alwaysUseDefaultTargetUrl = conf.successHandler.alwaysUseDefault
targetUrlParameter = conf.successHandler.targetUrlParameter
useReferer = conf.successHandler.useReferer
redirectStrategy = ref('redirectStrategy')
}
MyAuthenticationSuccessHandler
被注入(inject)测试 Controller ,但
onAuthenticationSuccess
永远不会被调用。我在父类(super class)版本中放置了一个断点,并且有效。我也尝试用 java 重写我的自定义类,但这没有用。
最佳答案
原来另一个登录过滤器已经处于事件状态,它阻止了正常方法的工作。有问题的过滤器是 org.mitre.openid.connect.client.OIDCAuthenticationFilter
解决方法是通过那个注入(inject)您的成功处理程序,例如:
authenticationSuccessHandler(apipulse.MyAuthenticationSuccessHandler) {
clientRegistrationTemplate = ref(clientRegistrationTemplate)
}
...
openIdConnectAuthenticationFilter(OIDCAuthenticationFilter) {
...
authenticationSuccessHandler = ref('authenticationSuccessHandler')
}
关于grails - 无法覆盖 AuthenticationSuccessHandler 的 onAuthenticationSuccess 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54291700/
我有以下身份验证处理程序: class LoginAuthSuccessHandler implements AuthenticationSuccessHandlerInterface, Authen
我有一个允许用户登录或注册的表格。 当用户登陆包含表单的页面时,请求将保存在RequestCache对象中(我正在使用Spring Security)。 在用户决定注册的情况下,我想模仿Spring
在其他一些帖子之后,我尝试覆盖 spring-security 处理程序的身份验证成功方法,但它从未被调用。我的代码如下所示: src/groovy/mypackage/MyAuthenticatio
我是一名优秀的程序员,十分优秀!