新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
spring boot Security 简单使用
成都创新互联专业为企业提供金州网站建设、金州做网站、金州网站设计、金州网站制作等企业网站建设、网页设计与制作、金州企业网站模板建站服务,十余年金州做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
引入依赖
org.springframework.boot
spring-boot-starter-security
配置 SecurityConfig@Configuration
br/>@Configuration
@Autowired
UserDetailServiceImpl userDetailService;
@Autowired
LoginSuccessHandler loginSuccessHandler;
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
//自定义用户验证和加密方式
auth.userDetailsService(userDetailService).passwordEncoder(new BCryptPasswordEncoder());
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.formLogin() // 定义当需要用户登录时候,转到的登录页面。
// .loginPage("/login.html") //自定义登录页面
// .loginProcessingUrl("/login") //自定义登录接口地址
.successHandler(loginSuccessHandler)
.and()
// 定义哪些URL需要被保护、哪些不需要被保护
.authorizeRequests().antMatchers("/login").permitAll() //不需要保护的URL
.anyRequest() // 任何请求,登录后可以访问
.authenticated()
.and()
.logout().logoutSuccessUrl("/login").permitAll() // 登出
.and()
.csrf().disable();
}
}
3.用户验证处理
@Component
public class UserDetailServiceImpl implements UserDetailsService {
/**
* 用户校验
* @param s
* @return
* @throws UsernameNotFoundException
*/
@Override
public UserDetails loadUserByUsername(String s) throws UsernameNotFoundException {
Collection collection = new ArrayList<>();//权限集合
String password = new BCryptPasswordEncoder().encode("123456");
User user = new User(s,password,collection);
return user;
}
}
4.登录成功后处理
@Component
public class LoginSuccessHandler implements AuthenticationSuccessHandler {
@Override
public void onAuthenticationSuccess(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Authentication authentication) throws IOException, ServletException {
httpServletResponse.setContentType("application/json;charset=UTF-8");
httpServletResponse.getWriter().write(authentication.getName());
}
}
HttpSecurity 类还有很可以使用的函数
请参考:
https://docs.spring.io/spring-security/site/docs/3.2.4.RELEASE/apidocs/org/springframework/security/config/annotation/web/builders/HttpSecurity.html
----end----