add method

This commit is contained in:
Looly 2022-04-15 06:20:47 +08:00
parent 3e16ec4345
commit 50abb8f6a6
2 changed files with 19 additions and 3 deletions

View File

@ -3,11 +3,12 @@
-------------------------------------------------------------------------------------------------------------
# 5.8.0.M4 (2022-04-14)
# 5.8.0.M4 (2022-04-15)
### ❌不兼容特性
### 🐣新特性
* 【core 】 BeanUtil增加toBean重载pr#598@Gitee
### 🐞Bug修复

View File

@ -30,6 +30,7 @@ import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.function.Consumer;
import java.util.function.Supplier;
import java.util.stream.Collectors;
/**
@ -548,10 +549,24 @@ public class BeanUtil {
* @since 5.2.4
*/
public static <T> T toBean(Object source, Class<T> clazz, CopyOptions options) {
if (null == source) {
return toBean(source, () -> ReflectUtil.newInstanceIfPossible(clazz), options);
}
/**
* 对象或Map转Bean
*
* @param <T> 转换的Bean类型
* @param source Bean对象或Map
* @param targetSupplier 目标的Bean创建器
* @param options 属性拷贝选项
* @return Bean对象
* @since 5.8.0
*/
public static <T> T toBean(Object source, Supplier<T> targetSupplier, CopyOptions options) {
if (null == source || null == targetSupplier) {
return null;
}
final T target = ReflectUtil.newInstanceIfPossible(clazz);
final T target = targetSupplier.get();
copyProperties(source, target, options);
return target;
}