HttpConfig增加setUseDefaultContentTypeIfNull方法

This commit is contained in:
Looly 2024-09-04 17:15:24 +08:00
parent 15317ab861
commit 3cd25c5864
3 changed files with 19 additions and 2 deletions

View File

@ -2,10 +2,11 @@
# 🚀Changelog
-------------------------------------------------------------------------------------------------------------
# 5.8.33(2024-09-03)
# 5.8.33(2024-09-04)
### 🐣新特性
* 【core 】 SyncFinisher增加setExecutorService方法issue#IANKQ1@Gitee
* 【http 】 HttpConfig增加`setUseDefaultContentTypeIfNull`方法issue#3719@Github
### 🐞Bug修复
* 【json 】 修复JSONConfig.setDateFormat设置后toBean无效问题issue#3713@Github

View File

@ -94,6 +94,11 @@ public class HttpConfig {
* 自动重定向时是否处理cookie
*/
boolean followRedirectsCookie;
/**
* issue#3719 如果为true则当请求头中Content-Type为空时使用默认的Content-Type即application/x-www-form-urlencoded
* @since 5.8.33
*/
boolean useDefaultContentTypeIfNull = true;
/**
* 设置超时单位毫秒<br>
@ -314,4 +319,15 @@ public class HttpConfig {
this.followRedirectsCookie = followRedirectsCookie;
return this;
}
/**
* 设置是否使用默认Content-Type如果请求中未设置Content-Type是否使用默认值
* @param useDefaultContentTypeIfNull 是否使用默认Content-Type
* @return this
* @since 5.8.33
*/
public HttpConfig setUseDefaultContentTypeIfNull(boolean useDefaultContentTypeIfNull) {
this.useDefaultContentTypeIfNull = useDefaultContentTypeIfNull;
return this;
}
}

View File

@ -1358,7 +1358,7 @@ public class HttpRequest extends HttpBase<HttpRequest> {
* @throws IOException IO异常
*/
private void sendFormUrlEncoded() throws IOException {
if (StrUtil.isBlank(this.header(Header.CONTENT_TYPE))) {
if (this.config.useDefaultContentTypeIfNull && StrUtil.isBlank(this.header(Header.CONTENT_TYPE))) {
// 如果未自定义Content-Type使用默认的application/x-www-form-urlencoded
this.httpConnection.header(Header.CONTENT_TYPE, ContentType.FORM_URLENCODED.toString(this.charset), true);
}