diff --git a/others/db_table_description.html b/others/db_table_description.html index 9dd7126..48804f8 100644 --- a/others/db_table_description.html +++ b/others/db_table_description.html @@ -324,22 +324,38 @@
在项目中,主要操作oauth_refresh_token
表的对象是JdbcTokenStore.java
.
(与操作oauth_access_token
表的对象一样);更多的细节请参考该类.
+
+ 如果客户端的grant_type不支持refresh_token
,则不会使用该表.
code
的值(未加密).
+ AuthorizationRequestHolder.java
对象序列化后的二进制数据.
+
+ 在项目中,主要操作oauth_code
表的对象是JdbcAuthorizationCodeServices.java
.
+ 更多的细节请参考该类.
+
+ 只有当grant_type为"authorization_code"时,该表中才会有数据产生; 其他的grant_type没有使用该表.
+