修改more

This commit is contained in:
fanxb 2019-04-11 11:10:53 +08:00
parent 4d564918e1
commit 2e4660554b
3 changed files with 4 additions and 2 deletions

View File

@ -40,7 +40,7 @@ services:
  然后在`docker-compose.yml`所在目录使用`docker-compose up -d`命令,启动 redis。
<!-- readmore -->
<!-- more -->
# 集成 springboot

View File

@ -32,7 +32,7 @@ categories:
&emsp;&emsp;单点点说就是一次登录后可免登陆访问其他的可信平台。比如我们登录淘宝网后再打开天猫首页可以发现已经是登录状态了。SSO 是一种比较流行的服务于企业业务整合的一种解决方案。
<!-- readmore -->
<!-- more -->
# 如何实现 SSO

View File

@ -25,6 +25,8 @@ categories:
因此一个 jwt 字符串都是如下的形式:
Header.Payload.Signature
<!-- more -->
## Header
&emsp;&emsp;header 大多数情况下是只包含两个属性的 json 字符串,token 的类型("JWT")和用到的算法(比如 HS256,RS256,ES256 等)如下: