Spring Boot 13. 与安全


安全,Spring Security

安全

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

  • 几个类:

    • WebSecurityConfigurerAdapter:自定义Security策略
    • AuthenticationManagerBuilder:自定义认证策略
    • @EnableWebSecurity:开启WebSecurity模式
  • 应用程序的两个主要区域是“认证”和“授权”(或者访问控制)。这两个主要区域是Spring Security 的两个目标。

  • “认证”(Authentication),是建立一个他声明的主体的过程(一个“主体”一般是指用户,设备或一些可以在你的应用程序中执行动作的其他系统)。

  • “授权”(Authorization)指确定一个主体是否允许在你的应用程序执行一个动作的过程。为了抵达需要授权的店,主体的身份已经有认证过程建立。

  • 这个概念是通用的而不只在Spring Security中。

Web&安全

  1. 登陆/注销
    • HttpSecurity配置登陆、注销功能
  2. Thymeleaf提供的SpringSecurity标签支持
    • 需要引入thymeleaf-extras-springsecurity4
    • sec:authentication=“name”获得当前用户的用户名
    • sec:authorize=“hasRole(‘ADMIN’)”当前用户必须拥有ADMIN权限时才会显示标签内容
  3. remember me
    • 表单添加remember-me的checkbox
    • 配置启用remember-me功能
  4. CSRF(Cross-site request forgery)跨站请求伪造
    • HttpSecurity启用csrf功能,会为表单添加_csrf的值,提交携带来预防CSRF;

登录认证授权



    org.springframework.boot
    spring-boot-starter-thymeleaf



    org.springframework.boot
    spring-boot-starter-security


/**
 * @author zhaokuii11@163.com
 * @create 
 * @Description
 * 1. 引入 SpringSecurity 模块
 * 2. 编写 Security配置类继承 WebSecurityConfigurerAdapter,使用注解 @EnableWebSecurity添加在类上
 */
@EnableWebSecurity
public class MySecurityConfig extends WebSecurityConfigurerAdapter {
    @Override
    public void configure(HttpSecurity http) throws Exception {
        // 定制请求的授权规则
        //让所有人都可以访问 /这个请求(欢迎页)
        http.authorizeRequests().antMatchers("/").permitAll()
                // 访问 /level1/** 需要 VIP1的权限
                .antMatchers("/level1/**").hasRole("VIP1")
                .antMatchers("/level2/**").hasRole("VIP2")
                .antMatchers("/level3/**").hasRole("VIP3");

        //开启自动配置的登录功能,效果,如果没有登录,没有权限就会来到登录页面
        http.formLogin();
        // 1. /login来到登录页
        // 2. /login?error表示登录失败
        // 3. 更多配置在 HttpSecurity
    }

    //定义认证规则
    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.inMemoryAuthentication()
                //添加用户 zhangsan 密码 1234 角色 VIP1 VIP2
                .withUser("zhangsan").password("1234").roles("VIP1", "VIP2")
                .and()
                .withUser("lisi").password("1234").roles("VIP2", "VIP3")
                .and()
                .withUser("wangwu").password("1234").roles("VIP1", "VIP3");
    }
}

权限控制注销



    org.springframework.boot
    spring-boot-starter-security



    org.thymeleaf.extras
    thymeleaf-extras-springsecurity4
    3.0.2.RELEASE

@EnableWebSecurity
public class MySecurityConfig extends WebSecurityConfigurerAdapter {
    @Override
    public void configure(HttpSecurity http) throws Exception {
        // 定制请求的授权规则
        //让所有人都可以访问 /这个请求(欢迎页)
        http.authorizeRequests().antMatchers("/").permitAll()
                // 访问 /level1/** 需要 VIP1的权限
                .antMatchers("/level1/**").hasRole("VIP1")
                .antMatchers("/level2/**").hasRole("VIP2")
                .antMatchers("/level3/**").hasRole("VIP3");

        //开启自动配置的登录功能,效果,如果没有登录,没有权限就会来到登录页面
        http.formLogin()
                .usernameParameter("user").passwordParameter("pwd") //指定登录表单的表单参数
                .loginPage("/userlogin");//指定登录的url
        // 1. /login来到登录页
        // 2. /login?error表示登录失败
        // 3. 更多配置在 HttpSecurity
        // 4. 默认post形式的 /login代表处理登录
        // 5. 一旦定制 loginPage,那么 loginPage的 post请求就是登录 get就是去登录

        //开启自动配置的注销功能
        http.logout() ////访问 /logout 表示用户注销,清空 session,注销成功返回 /login?logout
                .logoutSuccessUrl("/");//注销成功以后来到欢迎页面

        //开启记住我功能
        http.rememberMe().rememberMeParameter("remember");//会将 cookie存入浏览器14天生效
        //登录成功以后,将 cookie发给浏览器保存,以后访问页面带上这个cookie,只要通过检查就可以免登录,
        //点击注销会删除 cookie


    }

    //定义认证规则
    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.inMemoryAuthentication()
                //添加用户 zhangsan 密码 1234 角色 VIP1 VIP2
                .withUser("zhangsan").password("1234").roles("VIP1", "VIP2")
                .and()
                .withUser("lisi").password("1234").roles("VIP2", "VIP3")
                .and()
                .withUser("wangwu").password("1234").roles("VIP1", "VIP3");
    }
}




    
    Insert title here


欢迎登陆武林秘籍管理系统


用户名:
密码:
记住我



    
    Insert title here


欢迎光临武林秘籍管理系统

游客您好,如果想查看武林秘籍 请登录

,你好,你拥有的角色有,


普通武功秘籍

高级武功秘籍

相关