mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:20:07 +08:00
HttpGlobalConfig.allowPatch()调用时忽略错误
This commit is contained in:
parent
554b828745
commit
247d79a4fb
@ -7,6 +7,7 @@
|
||||
|
||||
### 🐣新特性
|
||||
* 【core 】 XmlUtil.readObjectFromXml增加注入漏洞的警告注释,并标识为废弃(issue#2857@Github)
|
||||
* 【http 】 HttpGlobalConfig.allowPatch()调用时忽略错误(issue#2832@Github)
|
||||
|
||||
### 🐞Bug修复
|
||||
* 【core 】 修复HexUtil.isHexNumber()对"-"的判断问题(issue#2857@Github)
|
||||
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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"
|
||||
};
|
||||
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user