根據文檔, https://docs.spring.io/spring-security/site/docs/3.0.x/reference/technical-overview.html。 我打算使用Spring Security在調用REST的一些我的web服務的web應用程序,是有必要的SessionCreationPloicy設置爲無國籍這個例子中, https://github.com/spring-projects/spring-boot/issues/2755。 Spring Security在請求之間存儲SecurityContext(Session),但我們知道REST是無狀態的,並且不使用HTTP會話。您可以使用Spring安全性與REST服務而不使其成爲無狀態嗎?
使用Spring Security與調用REST webservice而不將其設置爲無狀態的應用程序有什麼問題?
我相信你可以使用Spring Security來保護對REST端點的訪問。與端點的交互仍然是無狀態的,但您需要進行身份驗證 – ochi
HTTP身份驗證爲STATEFUL,JWT身份驗證爲STATELESS –