Springboot整合SpringSecurity实现登录验证

SpringSecurity


简介

Spring Security是针对Spring项目的安全框架,也是Springboot底层安全模块默认的技术选型,他可以实现强大的Web安全控制,对于安全控制,我么仅需要引入spring-boot-starter-security模块,进行少量的配置,即可实现强大的安全管理。

记住几个类:

- WebSecurityConfigurerAdapter:自定义Security策略
- AuthenticationManagerBuilder:自定义认证策略
- @EnableWebSecurity:开启WebSecurity模式

Spring Security的两个主要目标是认证和授权。

代码

引入maven

    <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-security</artifactId>
            </dependency>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-thymeleaf</artifactId>
            </dependency>
            <dependency>
                <groupId>org.thymeleaf.extras</groupId>
                <artifactId>thymeleaf-extras-springsecurity5</artifactId>
                <version>3.0.4.RELEASE</version>
            </dependency>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
            </dependency>
    </dependencies>

Controller实现页面跳转

    @Controller
    public class RouterController {
    
        @RequestMapping({"/", "/index"})
        public String index() {
            return "index";
        }
    
        @RequestMapping("/toLogin")
        public String toLogin() {
            return "views/login";
        }
    
        @RequestMapping("/level1/{id}")
        public String level1(@PathVariable("id") int id) {
            return "views/level1/" + id;
        }
    
        @RequestMapping("/level2/{id}")
        public String level2(@PathVariable("id") int id) {
            return "views/level2/" + id;
        }
    
        @RequestMapping("/level3/{id}")
        public String level3(@PathVariable("id") int id) {
            return "views/level3/" + id;
        }
    }

自定义SecurityConfig类

    @EnableWebSecurity
    public class SecurityConfig extends WebSecurityConfigurerAdapter {
    
        //授权
        @Override
        protected void configure(HttpSecurity http) throws Exception {
            //首页所有人都可以访问,功能页只有对应有权限的人才能访问
            //请求授权的规则
            http.authorizeRequests().antMatchers("/").permitAll()
                    .antMatchers("/level1/**").hasRole("vip1")
                    .antMatchers("/level2/**").hasRole("vip2")
                    .antMatchers("/level3/**").hasRole("vip3");
    
            //开启默认登录页面
          	//定制登录页
            http.formLogin().loginPage("/toLogin").usernameParameter("username")
                    .passwordParameter("password").loginProcessingUrl("/login");
    
            //开启注销功能,跳到首页
            http.csrf().disable();//关闭csrf功能,登录失败可能存在的问题
            http.logout().logoutSuccessUrl("/");
    
            //开启记住我功能,cookie默认保存两周,自定义接收前端的参数
            http.rememberMe().rememberMeParameter("remeber");
        }
    
        //认证
        //密码编码:PasswordEncoder
        //在Spring Security5.0+ 新增了很多加密方法
        @Override
        protected void configure(AuthenticationManagerBuilder auth) throws Exception {
            auth.inMemoryAuthentication().passwordEncoder(new BCryptPasswordEncoder())
                    .withUser("wangwu").password(new BCryptPasswordEncoder().encode("123456")).roles("vip1")
                    .and()
                    .withUser("zhangsan").password(new BCryptPasswordEncoder().encode("123456")).roles("vip1", "vip2")
                    .and()
                    .withUser("lisi").password(new BCryptPasswordEncoder().encode("123456")).roles("vip1", "vip2",
                    "vip3");
        }
    }

引入

xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity5"

实现前端验证

    <!--如果未登录-->
    <div sec:authorize="!isAuthenticated()">
        <h2 align="center"><a th:href="@{/login}">请登录</a></h2>
    </div>
    <!--如果登录,显示用户名和注销-->
    <div sec:authorize="isAuthenticated()">
        <h2 align="center"><a th:href="@{/logout}">注销</a></h2>
    </div>
    <div sec:authorize="isAuthenticated()">
        用户名:<span sec:authentication="name"></span>
        权限:<span sec:authentication="principal.authorities"></span>
    </div>
    <!--判断是否拥有某些权限-->
    <div sec:authorize="hasRole('')">
    </div>
    ```



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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值