diff --git a/CHANGELOG.md b/CHANGELOG.md index 48e6feefe..4fed88f98 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,13 @@ ------------------------------------------------------------------------------------------------------------- -# 6.0.0.M1 (2023-03-10) +# 6.0.0.M1 (2023-04-23) ### 计划实现 * 【poi 】 Markdown相关(如HTML转换等),基于commonmark-java * 【db 】 增加DDL封装 * 【poi 】 CellUtil.getCellIfMergedRegion考虑添加缓存支持,增加最大和最小范围判断,减少遍历 -* 【http 】 公共代理和SSL验证 +* 【http 】 redirect跳转和Cookie ### ❌不兼容特性 diff --git a/hutool-http/src/main/java/org/dromara/hutool/http/client/package-info.java b/hutool-http/src/main/java/org/dromara/hutool/http/client/package-info.java index 8bb53b27d..e2256fbc2 100644 --- a/hutool-http/src/main/java/org/dromara/hutool/http/client/package-info.java +++ b/hutool-http/src/main/java/org/dromara/hutool/http/client/package-info.java @@ -11,7 +11,17 @@ */ /** - * HTTP请求客户端封装 + * HTTP请求客户端封装,请求过程如下: + *
+ *               Server
+ *        ^                 |
+ *        |                 v
+ *      Request          Response
+ *        ^                 |
+ *        |                 v
+ *           ClientEngine
+ * 
+ * * @author looly */ package org.dromara.hutool.http.client;