SpringSecurity中的註解

2021-10-01 17:52:09 字數 1035 閱讀 8962

@enablewebsecurity的作用

首先,enablewebsecurity註解是個組合註解,他的註解中,又使用了@enableglobalauthentication註解:

@retention(retentionpolicy.runtime)

@target()

@documented

@import()

@enableglobalauthentication //2

@configuration

public @inte***ce enablewebsecurity 12

3456

789首先,在1處啟用了websecurityconfiguration配置類,在這個配置類中, 注入了乙個非常重要的bean, bean的name為: springsecurityfilterchain,這是spring secuity的核心過濾器, 這是請求的認證入口。

在2處又使用了enableglobalauthentication 註解, 註解原始碼為:

@retention(retentionpolicy.runtime)

@target()

@documented

@import()

@configuration

public @inte***ce enableglobalauthentication 12

3456

7在這個註解中,啟用了authenticationconfiguration配置類, 這個類是來配置認證相關的核心類, 這個類的主要作用是,向spring容器中注入authenticationmanagerbuilder, authenticationmanagerbuilder其實是使用了建造者模式, 他能建造authenticationmanager, 這個類前面提過,是身份認證的入口。

所以,到這為止,enablewebsecurity註解有兩個作用,1: 載入了websecurityconfiguration配置類, 配置安全認證策略。2: 載入了authenticationconfiguration, 配置了認證資訊。

spring security中csrf的處理

spring boot 與spring security進行整合的時候需要考慮csrf的問題。但是,有時候csrf會攔截所有的post請求,此時應該怎麼辦,首先,我們在header.html中新增一下 此處的header.html可以理解為每個頁面的頭部,為了整合方便,將頁面頭部單獨提取出來為hea...

spring security 安全框架

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

SpringSecurity認證流程

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