HttpGlobalConfig.allowPatch()调用时忽略错误

This commit is contained in:
Looly 2023-01-15 11:21:21 +08:00
parent 554b828745
commit 247d79a4fb
4 changed files with 13 additions and 3 deletions

View File

@ -7,6 +7,7 @@
### 🐣新特性
* 【core 】 XmlUtil.readObjectFromXml增加注入漏洞的警告注释并标识为废弃issue#2857@Github
* 【http 】 HttpGlobalConfig.allowPatch()调用时忽略错误issue#2832@Github
### 🐞Bug修复
* 【core 】 修复HexUtil.isHexNumber()对"-"的判断问题issue#2857@Github

View File

@ -120,7 +120,12 @@ public class HttpConnection {
// 增加PATCH方法支持
if (Method.PATCH.equals(method)) {
HttpGlobalConfig.allowPatch();
try {
HttpGlobalConfig.allowPatch();
} catch (Exception ignore){
// ignore
// https://github.com/dromara/hutool/issues/2832
}
}
}

View File

@ -7,7 +7,6 @@ import cn.hutool.http.cookie.GlobalCookieManager;
import java.io.Serializable;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.net.CookieManager;
import java.net.HttpURLConnection;
@ -198,7 +197,7 @@ public class HttpGlobalConfig implements Serializable {
}
// 去除final修饰
ReflectUtil.setFieldValue(methodsField, "modifiers", methodsField.getModifiers() & ~Modifier.FINAL);
ReflectUtil.removeFinalModify(methodsField);
final String[] methods = {
"GET", "POST", "HEAD", "OPTIONS", "PUT", "DELETE", "TRACE", "PATCH"
};

View File

@ -378,4 +378,9 @@ public class HttpUtilTest {
final HttpRequest request = HttpRequest.of(url).method(Method.GET);
Console.log(request.execute().body());
}
@Test
public void allowPatchTest() {
HttpGlobalConfig.allowPatch();
}
}