mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
修复graalvm原生打包使用http工具被转为file协议问题
This commit is contained in:
parent
99ec3bbeb4
commit
cd79e6e5f8
@ -29,6 +29,7 @@
|
||||
* 【core 】 修复时间戳转Bean时异常问题(issue#I8NMP7@Gitee)
|
||||
* 【core 】 修复PostgreSQL使用upsert字段大小写问题问题(issue#I8PB4X@Gitee)
|
||||
* 【extra 】 修复TinyPinyinEngine可能的空指针问题(issue#3437@Github)
|
||||
* 【core 】 修复graalvm原生打包使用http工具被转为file协议问题(issue#I8PY3Y@Gitee)
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
# 5.8.23(2023-11-12)
|
||||
|
@ -147,6 +147,14 @@ public class URLUtil extends URLEncodeUtil {
|
||||
try {
|
||||
return new URL(null, url, handler);
|
||||
} catch (MalformedURLException e) {
|
||||
// issue#I8PY3Y
|
||||
if(e.getMessage().contains("Accessing an URL protocol that was not enabled")){
|
||||
// Graalvm打包需要手动指定参数开启协议:
|
||||
// --enable-url-protocols=http
|
||||
// --enable-url-protocols=https
|
||||
throw new UtilException(e);
|
||||
}
|
||||
|
||||
// 尝试文件路径
|
||||
try {
|
||||
return new File(url).toURI().toURL();
|
||||
|
Loading…
Reference in New Issue
Block a user