IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> 【SpringBoot】整合SpringSecurity框架 -> 正文阅读

[Java知识库]【SpringBoot】整合SpringSecurity框架

【SpringBoot】整合SpringSecurity框架

一、整合Springsecurity

  1. 引入依赖

    <dependency>
        <groupId>org.springframework.security</groupId>
        <artifactId>spring-security-test</artifactId>
        <scope>test</scope>
    </dependency>
    
  2. 重启项目

    在这里插入图片描述

    会自动跳转到SpringSecurity提供的登陆页面

    登陆的用户名是:user

    登陆的密码在启动项目的过程中,已经在日志中输出

    在这里插入图片描述

二、自定义登录验证信息

2.1 自定义登陆页面

  1. 新建自定义的登录html

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>登录</title>
    </head>
    <body>
    <h2>自定义登录页面</h2>
    <form action="/login.do" method="post">
        <table>
            <tr>
                <td>用户名:</td>
                <td><input type="text" name="username"></td>
            </tr>
            <tr>
                <td>密码:</td>
                <td><input type="password" name="password"></td>
            </tr>
            <tr>
                <td colspan="2">
                    <button type="submit">登录</button>
                </td>
            </tr>
        </table>
    </form>
    </body>
    </html>
    
  2. 创建SpringSecurity的配置类

    package com.example.config;
    
    import org.springframework.context.annotation.Configuration;
    import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
    import org.springframework.security.config.annotation.web.builders.HttpSecurity;
    import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
    import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
    
    /**
     * SpringSecurity的配置类
     */
    @Configuration
    @EnableWebSecurity//放开SpringSecurity
    public class SpringSecurityConfig  extends WebSecurityConfigurerAdapter {
    
        /**
         *  http请求的配置,自定义登录页面
         * @param http
         * @throws Exception
         */
        @Override
        protected void configure(HttpSecurity http) throws Exception {
            http.formLogin()
                    .loginPage("/login.html") // 指定自定义的登录界面
                    .loginProcessingUrl("/login.do") // 必须和登录表单的 action一致
                    .and()
                    .authorizeRequests() // 定义哪些资源被保护
                    .antMatchers("/login.html")
                    .permitAll() // login.html可以匿名访问
                    .anyRequest()
                    .authenticated(); //出来登录页面其他都需要认证
            http.csrf().disable();// 禁用跨越攻击
        }
    }
    
  3. 注意点

    1. 表单的登录action必须和配置类中的loginProcessingUrl一致
    2. 此时的账号密码还是系统生成的

2.2 自定义登录认证

  1. 修改配置类

    package com.example.config;
    
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
    import org.springframework.security.config.annotation.web.builders.HttpSecurity;
    import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
    import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
    import org.springframework.security.core.userdetails.UserDetailsService;
    import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
    
    /**
     * SpringSecurity的配置类
     */
    @Configuration
    @EnableWebSecurity//放开SpringSecurity
    public class SpringSecurityConfig  extends WebSecurityConfigurerAdapter {
    
        @Autowired
        private UserDetailsService userDetailsService;
    
        /**
         * 认证的配置
         * @param auth
         * @throws Exception
         */
        @Override
        protected void configure(AuthenticationManagerBuilder auth) throws Exception {
            // 配置自定义的账号密码
            // auth.inMemoryAuthentication()
            //         .withUser("zhang")
            //         .password("{noop}123")//加{noop}代表不使用密码验证
            //         .roles("USER");// 用户具有的角色
            //获得BCryptPasswordEncoder加密编码
            BCryptPasswordEncoder encoder = new BCryptPasswordEncoder();
            //加密操作
            //encoder.encode("123");
            //对密码不加密的话,在自定义的配置类中加上{noop}
            //auth.userDetailsService(userDetailsService);
            auth.userDetailsService(userDetailsService).passwordEncoder(encoder);
        }
    
        /**
         *  http请求的配置,自定义登录页面
         * @param http
         * @throws Exception
         */
        @Override
        protected void configure(HttpSecurity http) throws Exception {
            http.formLogin()
                    .loginPage("/login.html") // 指定自定义的登录界面
                    .loginProcessingUrl("/login.do") // 必须和登录表单的 action一致
                    .and()
                    .authorizeRequests() // 定义哪些资源被保护
                    .antMatchers("/login.html")
                    .permitAll() // login.html可以匿名访问
                    .anyRequest()
                    .authenticated(); //出来登录页面其他都需要认证
            http.csrf().disable();// 禁用跨越攻击
        }
    }
    
    
  2. 取得UserDetailService对象

    自定义接口,实现UserDetailService接口

    package com.example.service;
    
    import org.springframework.security.core.userdetails.UserDetailsService;
    
    public interface IUserDetailService extends UserDetailsService {
    
    }
    

    自定义接口实现类

    package com.example.service.impl;
    
    import org.springframework.security.core.userdetails.User;
    import com.example.service.IUserDetailService;
    import org.springframework.security.core.authority.SimpleGrantedAuthority;
    import org.springframework.security.core.userdetails.UserDetails;
    import org.springframework.security.core.userdetails.UsernameNotFoundException;
    
    import java.util.ArrayList;
    import java.util.List;
    
    public class UserDetailServiceImpl implements IUserDetailService {
    
        /**
         * 假设实现数据库连接操作
         * @param username 登陆页面传过来的用户名
         * @return
         * @throws UsernameNotFoundException
         */
        @Override
        public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
            // 模拟数据库操作 根据账号查询
            String password = "456";
            // 假设查询出来的用户的角色
            List<SimpleGrantedAuthority> list = new ArrayList<>();
            list.add(new SimpleGrantedAuthority("USER1"));
            /**
             * 第一个参数:用户名
             * 第二个参数:密码,不需要使用密码验证的时候,加上{noop},需要的时候去掉
             * 第三个参数:拥有的权限
             */
            UserDetails userDetails = new User(username,password,list);
            return userDetails;
        }
    }
    
  3. 注意点

    1. 密码可以通过用户名去数据库查询
    2. 权限可以通过用户名去数据库查询
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-03-11 21:59:56  更:2022-03-11 22:03:16 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 10:46:27-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码