SpringBoot+SpringSecurity

这只是简单的一个整合 只适用于单体项目
1.引入SpringSecurity

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring‐boot‐starter‐security</artifactId>
</dependency>

2.编写springSecurity的配置类

@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
}

3.控制请求的访问权限

@Override
protected void configure(HttpSecurity http) throws Exception {
    //super.configure(http);
    //定制请求的授权规则
    http.authorizeRequests().antMatchers("/").permitAll()
            .antMatchers("/路径/**").hasRole("角色");
    //开启自动配置的登录功能
    http.formLogin();
    //1./login来到登录页
    //2.重定向到/login?error表示登陆失败

    //开启自动配置的注销功能
    http.logout().logoutSuccessUrl("");//注销成功返回地址
    //1.访问/logout 表示用户注销,清空session


}
//定义认证规则
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
   // super.configure(auth);
    //jdbc验证 auth.jdbcAuthentication().withUser("").password("").roles("");
    auth.inMemoryAuthentication().withUser("admin").password("123456").roles("1")
            .and()
            .withUser("root").password("root").roles("1");
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值