修复ConverterRegistry中无效加载导致的问题

This commit is contained in:
Looly 2022-12-27 20:48:28 +08:00
parent 379b10bbd5
commit 200c098b29
2 changed files with 1 additions and 7 deletions

View File

@ -30,6 +30,7 @@
* 【core 】 修复UrlBuilder中参数中包括"://"判断错误问题pr#898@Gitee
* 【core 】 修复IndexedComparator导致的数据错乱问题ExcelWriter使用部分别名导致字段丢失issue#I66Z6B@Gitee
* 【crypto】 修复sm2构造方法NullPointerExceptionpr#2820@Github
* 【core 】 修复ConverterRegistry中无效加载导致的问题issue#2812@Github
-------------------------------------------------------------------------------------------------------------

View File

@ -37,7 +37,6 @@ import cn.hutool.core.date.DateTime;
import cn.hutool.core.lang.Opt;
import cn.hutool.core.lang.TypeReference;
import cn.hutool.core.map.SafeConcurrentHashMap;
import cn.hutool.core.util.ClassLoaderUtil;
import cn.hutool.core.util.ClassUtil;
import cn.hutool.core.util.ObjectUtil;
import cn.hutool.core.util.ReflectUtil;
@ -280,12 +279,6 @@ public class ConverterRegistry implements Serializable {
// 尝试转Bean
if (BeanUtil.isBean(rowType)) {
try {
// 由于5.x设计缺陷JSON转bean无法实现自定义转换因此此处临时使用反射方式获取自定义的转换器此问题会在6.x中彻底解决
final Class<?> clazz = ClassLoaderUtil.loadClass("cn.hutool.json.BeanConverterForJSON");
return ((Converter<T>)ReflectUtil.newInstance(clazz, type)).convert(value, defaultValue);
}catch (final Throwable ignore){
}
return new BeanConverter<T>(type).convert(value, defaultValue);
}