From 7e2b3e0742e39150714fcc8d55c5f5723443387c Mon Sep 17 00:00:00 2001 From: Kou Shuang Date: Tue, 17 Sep 2019 13:43:14 +0800 Subject: [PATCH] Update SpringInterviewQuestions.md --- docs/system-design/framework/spring/SpringInterviewQuestions.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/system-design/framework/spring/SpringInterviewQuestions.md b/docs/system-design/framework/spring/SpringInterviewQuestions.md index 5ae5ea53..d1af5e3e 100644 --- a/docs/system-design/framework/spring/SpringInterviewQuestions.md +++ b/docs/system-design/framework/spring/SpringInterviewQuestions.md @@ -388,6 +388,8 @@ Cookie 存储在客户端中,而Session存储在服务器上,相对来说 Se > JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted. ——[JSON Web Token (JWT)](https://tools.ietf.org/html/rfc7519) + + ## 参考 - 《Spring 技术内幕》 -- GitLab