SpringSecurity 基本使用

2021-10-25 21:34:39 字數 1168 閱讀 5343

一:匯入依賴

org.springframework.boot

spring-boot-starter-security

二:新增配置檔案

在配置檔案上新增@enablewebsecurity註解,並使得該類繼承websecurityconfigureradapter通過重寫configure方法即可進行安全配置

@enablewebsecurity

public class securityconfig extends websecurityconfigureradapter

// 認證

@override

protected void configure(authenticationmanagerbuilder auth) throws exception

}

三:當使用的是mybatis框架來進行資料庫查詢使用者時,可以簡單的實現userdetailservice介面,並重寫裡面的 loaduserbyusername(string username)方法,在方法中根據傳入的username在資料庫中查詢該使用者的資訊,並將資訊封裝到springsecurity的user中,並給與其許可權**如下:

public class customuserdetailsservce implements userdetailsservice
修改securityconfig 中的認證不符的**,注意要設定密碼的加密方式

@bean

userdetailsservice customuserdetailsservce()

@override

protected void configure(authenticationmanagerbuilder auth) throws exception

auth.userdetailsservice(customuserdetailsservce()).passwordencoder(new bcryptpasswordencoder());

}

四:可以在頁面上使用,要引入:

xmlns:th=""

spring security 安全框架

本文 http itblood.com spring security security framework.html 安全常識 acegi介紹 以宣告式方式為基於spring的web應用新增認證和授權控制 acegi體系結構 認證管理器 訪問控制管理器。認證 authenticationproce...

SpringSecurity認證流程

在之前的文章 springboot spring security 基本使用及個性化登入配置 中對springsecurity進行了簡單的使用介紹,基本上都是對於介面的介紹以及功能的實現。這一篇文章嘗試從原始碼的角度來上對使用者認證流程做乙個簡單的分析。在具體分析之前,我們可以先看看springse...

SpringSecurity使用技巧

1 鑑權處理頁通常包括四個方面的設定,分別是鑑權失敗 鑑權成功 未鑑權訪問 已鑑權但訪問了受保護許可權。如何自 定義這四類處理。鑑權失敗的預設處理頁面是 spring security login?login error 其預設處理類為 urlauthenticationfailurehandler...