springboot 整合 security 作为权限认证

首先需要到如两个pom依赖

 <!-- 引入thymeleaf-security的整合包 -->
<dependency>
    <groupId>org.thymeleaf.extras</groupId>
    <artifactId>thymeleaf-extras-springsecurity4</artifactId>
    <version>3.0.4.RELEASE</version>
</dependency>

<!-- 引入spring secutity 组件 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-security</artifactId>
</dependency>

然后编写一个配置config的配置类

@EnableWebSecurity
public class MySecurityConfig extends WebSecurityConfigurerAdapter {
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        //定制请求的授权规则
        http.authorizeRequests().antMatchers("/").permitAll()
                .antMatchers("/level/**").hasRole("VIP1");

        //开启自动配置的登录功能, 效果  如果没有权限就会跳转到登录页面
        http.formLogin();
        /**
         * 1、 /login 来到登录页面
         * 2、 重定向到login?error表示登录失败
         */

        //开启自动注销功能
        http.logout().logoutSuccessUrl("/");//注销成功时跳转的界面
        /**
         * 1、 访问/loguot 表示用户注销,清空session
         * 2、 注销成功会返回 /login?logout页面
         */
        //开启记住我功能
        http.rememberMe();
    }
    //认证规则
    //新版本的密码需要加密后才能通过  否则就会报出  PasswordEncoder这个错误
    //在spring Security 5.0+中  新增了很多的加密方法
    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.inMemoryAuthentication().passwordEncoder(new BCryptPasswordEncoder())
                .withUser("zhangsan").password(new BCryptPasswordEncoder().encode("123456")).roles("VIP1","VIP2")
        .and()
        .withUser("wangwu").password(new BCryptPasswordEncoder().encode("123456")).roles("VIP1");
    }
}

不要忘记添加@EnableWebSecurity组合注解 添加这个注解后不需要在添加@Configuration注解

大多数的功能我都有添加注释,如果想要在前端接收到角色信息和权限令牌时 只需要

<div sec:authorize="!isAuthenticated()">
    <!--判断是否有值-->
    <a>
        <!--获取用户名-->
        用户名: <span sec:authentication="name"></span>
        <!--获取用户权限-->
        角色: <span sec:authentication="principal.getAuthorities()"></span>
    </a>

</div>

就可以可以进行条件的判断和值的获取

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值