改进UrlQuery对无参URL增加判断识别(issue#IBRVE4@Gitee)

This commit is contained in:
Looly 2025-03-11 09:25:56 +08:00
parent c10c144f64
commit 88cf61eb7f
3 changed files with 31 additions and 1 deletions

View File

@ -2,7 +2,7 @@
# 🚀Changelog
-------------------------------------------------------------------------------------------------------------
# 5.8.37(2025-03-07)
# 5.8.37(2025-03-11)
### 🐣新特性
* 【json 】 ObjectMapper删除重复trimpr#3859@Github
@ -12,6 +12,7 @@
* 【http 】 `HttpBase`增加重载可选是否返回声调pr#3883@Github
* 【core 】 增加`VersionUtil`版本比较工具pr#3876@Github
* 【db 】 增加GoldenDB识别pr#3886@Github
* 【http 】 改进`UrlQuery`对无参URL增加判断识别issue#IBRVE4@Gitee
### 🐞Bug修复
* 【setting】 修复`SettingLoader`load未抛出异常导致配置文件无法正常遍历的问题pr#3868@Github

View File

@ -222,6 +222,9 @@ public class UrlQuery {
if (StrUtil.isBlank(queryStr)) {
return this;
}
} else if(StrUtil.startWith(queryStr, "http://") || StrUtil.startWith(queryStr, "https://")){
// issue#IBRVE4 用户传入只有URL没有param部分返回空
return this;
}
}

View File

@ -0,0 +1,26 @@
package cn.hutool.http;
import cn.hutool.core.util.CharsetUtil;
import org.junit.jupiter.api.Test;
import java.util.List;
import java.util.Map;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class IssueIBRVE4Test {
@Test
public void decodeParamMapNoParamTest() {
// 参数值不存在分界标记等号时
// 无参数值时
final Map<String, List<String>> paramMap = HttpUtil.decodeParams("https://hutool.cn/api.action", CharsetUtil.CHARSET_UTF_8);
assertEquals(0,paramMap.size());
}
@Test
public void decodeParamMapListNoParamTest() {
// 参数值不存在分界标记等号时
// 无参数值时
final Map<String, String> paramMap1 = HttpUtil.decodeParamMap("https://hutool.cn/api.action", CharsetUtil.CHARSET_UTF_8);
assertEquals(0,paramMap1.size());
}
}