SpringSecurity(一)初體驗

2021-10-02 15:02:51 字數 733 閱讀 6010

一、只需要新增兩個依賴

org.springframework.boot<

/groupid>

spring-boot-starter-security<

/artifactid>

<

/dependency>

org.springframework.boot<

/groupid>

spring-boot-starter-web<

/artifactid>

<

/dependency>

在建立controller

@restcontroller

public

class

hellocontroller

}

訪問的時候就可以看到

這樣的乙個介面,賬號是user,而密碼是控制台輸出的一串字串

再次重新整理的時候就不需要重新登入了

Spring Security學習總結一

security.xml 各種過濾器實戰,常用九個如下 一 鏈之 remembermeprocessingfilter 1。使用 選上remember me後,一旦頁面關閉或者伺服器重啟,還可以記得使用者的登陸狀態。remember me 2.設定 security.xml 登陸,登出中 二 鏈之 ...

Spring Security 一 核心元件

securitycontextholder用於儲存安全上下文 security context 的資訊。當前操作的使用者是誰,該使用者是否已經被認證,他擁有哪些角色許可權 這些都被儲存在securitycontextholder中。獲取使用者資訊 authentication authenticat...

Spring Security 核心類詳解一

securitycontextholder 是用來儲存 securitycontext 的。securitycontext 中含有當前正在訪問系統的使用者的詳細資訊。預設情況下,securitycontextholder 將使用 threadlocal 來儲存 securitycontext,這也就...