This commit is contained in:
Looly 2023-04-23 00:46:13 +08:00
parent 9bcaa20d1a
commit 548dcc6369
2 changed files with 13 additions and 3 deletions

View File

@ -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
### ❌不兼容特性

View File

@ -11,7 +11,17 @@
*/
/**
* HTTP请求客户端封装
* HTTP请求客户端封装请求过程如下
* <pre>
* Server
* ^ |
* | v
* Request Response
* ^ |
* | v
* ClientEngine
* </pre>
*
* @author looly
*/
package org.dromara.hutool.http.client;