springboot学习总结Spring security配置

Posted vincentren

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot学习总结Spring security配置相关的知识,希望对你有一定的参考价值。

(一)配置类

Spring security的配置和Spring MVC的配置类似,只需在一个配置类上注解@EnableWebSecurity(Springboot项目可以不用),并让这个类继承WebSecurityConfigurerAdapter。

@Configuration
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        super.configure(auth);
    }

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        super.configure(http);
    }

    @Override
    public void configure(WebSecurity web) throws Exception {
        super.configure(web);
    }
}

  (二)用户认证

通过实现UserDetailsService来实现

@Service
public class CustomUserService implements UserDetailsService {

    @Autowired
    SysUserRepository sysUserRepository;

    @Override
    public UserDetails loadUserByUsername(String s) throws UsernameNotFoundException {
        SysUser user = sysUserRepository.findByUsername(s);
        if (user == null) {
            throw new UsernameNotFoundException("用户名不存在");
        }
        return user;
    }
}

  (三)请求&授权

Spring security通过重写

protected void configure(HttpSecurity http) 

  这个方法来实现请求拦截的。

(四)定制登录行为

通过重写

protected void configure(HttpSecurity http) 

  这个方法(和上面是同一个方法)来定制登录行为

 

以上是关于springboot学习总结Spring security配置的主要内容,如果未能解决你的问题,请参考以下文章

spring boot学习总结-- 基础入门 Hello,spring boot!

Spring Boot 学习总结(32)—— Spring Boot 3.0 正式发布

Spring Boot 学习总结(32)—— Spring Boot 3.0 正式发布

Spring Boot 学习总结(32)—— Spring Boot 3.0 正式发布

Spring Boot学习总结

Spring Boot学习总结(24)——Spring Boot 2.5 新特性一览