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,则不会使用该表.

- oauth_code + oauth_code create_time 数据的创建时间,精确到秒,由数据库在插入数据时取当前系统时间自动生成(扩展字段) code - + + 存储服务端系统生成的code的值(未加密). + authentication - + + 存储将AuthorizationRequestHolder.java对象序列化后的二进制数据. + + + + +

+ 在项目中,主要操作oauth_code表的对象是JdbcAuthorizationCodeServices.java. + 更多的细节请参考该类. +
+ 只有当grant_type为"authorization_code"时,该表中才会有数据产生; 其他的grant_type没有使用该表. +

+