对于this project,我想在单独的前端和后端架构上构建一个OAuth2服务器。后端基于[spring-authorization-server],前端基于VUE。
在OAuth2登录流中,它重定向到/login
页面,但我需要重定向到vue前端的登录页面,例如“http://front-end ip:port/loginPage”。
如何在org.springframework.security.config.annotation.web.configuration.OAuth2AuthorizationServerSecurity
中自定义authenticationEntryPoint
,如下所示:
.formLogin(withDefaults()).exceptionHandling().authenticationEntryPoint(xxx)
你知道吗?
1条答案
按热度按时间ukxgm1gy1#
注:
OAuth2AuthorizationServerSecurity
已删除。最新的master
代码sample authorization server应用程序具有以下默认配置:
为了自定义默认配置,请勿
@Import(OAuth2AuthorizationServerConfiguration.class)
,而是提供以下内容:这使您可以访问
HttpSecurity
,以便您可以自定义所需的任何内容。