Java学习之路

Springboot 与Spring Securty初步整合实验

2019-07-18  本文已影响47人  椰子奶糖

Spring boot与Spring Security

认证(Authentication)

授权(Authorization)

Spring boot中使用Spring Security

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


@Override
        protected void configure(HttpSecurity http) throws Exception {
            //定制请求的授权规则
            http.authorizeRequests().antMatchers("/").permitAll()
                    .antMatchers("/level1/**").hasRole("VIP1")
                    .antMatchers("/level2/**").hasRole("VIP2")
                    .antMatchers("/level3/**").hasRole("VIP3");
        }

@Override
        protected void configure(AuthenticationManagerBuilder auth) throws Exception {
            //为测试方便,直接写死,不放在数据库里面
            auth.inMemoryAuthentication().withUser("123456").password("123456").roles("VIP1","VIP2")
                    .and()
                    .withUser("username2").password("password").roles("VIP1","VIP2","VIP3")
                    .and()
                    .withUser("username3").password("password").roles("VIP1");
        }

             //开启主动配置登录功能,效果:如果没有登录权限,就会来到登录页面
            http.formLogin().usernameParameter("user").passwordParameter("pwd")       
                    .loginPage("/userlogin");
            //1./login来到登录页面
            //2.重定向到/login?error表示登录失败
            //3.更多详细规定
            //4、默认post形式的 /login代表处理登陆
            //5、loginPage("/userlogin")是定制页面,而一但定制loginPage;那么 loginPage的post请求就是登陆

        //开启自动配置的注销功能。
        http.logout().logoutSuccessUrl("/");//注销成功以后来到首页
        //1、访问 /logout 表示用户注销,清空session
        //2、注销成功会返回 /login?logout 页面(假如只是http.logout()没有注销成功后跳转url的话默认返回登录界面);

         //开启记住我功能
        http.rememberMe().rememberMeParameter("remeber");
        //点击注销会删除cookie,就是说点击注销,下次就不会自动登录了
        //rememberMeParameter("remeber");这里表示获取请求体中name属性是remember的信息内容,一般写在checkbox中

上一篇 下一篇

猜你喜欢

热点阅读