SpringSecurity笔记整理
自定义登录页面
编写登录页面<! DOCTYPE html >
< html xmlns = " http://www.w3.org/1999/xhtml" xmlns: th= " https://www.thymeleaf.org" >
< head> < title> Please Log In</ title>
</ head>
< body>
< h1> Please Log In</ h1>
< form th: action= " @{/login}" method = " post" > < div> < input type = " text" name = " username" placeholder = " Username" /> </ div> < div> < input type = " password" name = " password" placeholder = " Password" /> </ div> < input type = " submit" value = " Log in" />
</ form>
</ body>
</ html>
编写LoginController@Controller
public class LoginController { @GetMapping ( "/login" ) public String login ( ) { return "login" ; }
}
配置SpringSecurityhttp. formLogin ( form -> form. loginPage ( "/login" ) . permitAll ( )
)
自定义AuthenticationManager
方式一 Publish AuthenticationManager@EnableWebSecurity
public class SecurityConfig { @Bean public AuthenticationManager authenticationManager ( UserDetailsService userDetailsService, PasswordEncoder passwordEncoder) { DaoAuthenticationProvider authenticationProvider = new DaoAuthenticationProvider ( ) ; authenticationProvider. setUserDetailsService ( userDetailsService) ; authenticationProvider. setPasswordEncoder ( passwordEncoder) ; ProviderManager providerManager = new ProviderManager ( authenticationProvider) ; providerManager. setEraseCredentialsAfterAuthentication ( false ) ; return providerManager; }
}
方式二 Configure global AuthenticationManagerBuilder@EnableWebSecurity
public class SecurityConfig { @Autowired public void configure ( AuthenticationManagerBuilder builder) { builder. eraseCredentials ( false ) ; }
}
Controller 自定义登录方法
配置登录 http. authorizeHttpRequests ( authorize -> authorize. requestMatchers ( HttpMethod . POST , "/user/login" ) . permitAll ( ) . anyRequest ( ) . authenticated ( ) )
编写登录方法 @PostMapping ( "/login" ) public Authentication login ( @RequestBody LoginRequest loginRequest, HttpServletRequest request, HttpServletResponse response) { SecurityContextHolderStrategy securityContextHolderStrategy = SecurityContextHolder . getContextHolderStrategy ( ) ; UsernamePasswordAuthenticationToken token = UsernamePasswordAuthenticationToken . unauthenticated ( loginRequest. username ( ) , loginRequest. password ( ) ) ; Authentication authentication = authenticationManager. authenticate ( token) ; SecurityContext context = securityContextHolderStrategy. createEmptyContext ( ) ; context. setAuthentication ( authentication) ; securityContextHolderStrategy. setContext ( context) ; securityContextRepository. saveContext ( context, request, response) ; return authentication ; }
注意如果启用了formLogin则Controller中的login地址不能是/login, 否则登录会被UsernamePasswordAuthenticationFilter拦截
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/53067.shtml
如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!