mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-05-09 23:51:34 +08:00
add null check
This commit is contained in:
parent
30f541f849
commit
303c77a08d
@ -8,6 +8,7 @@
|
|||||||
### 🐣新特性
|
### 🐣新特性
|
||||||
* 【system 】 OshiUtil增加getCurrentProcess方法
|
* 【system 】 OshiUtil增加getCurrentProcess方法
|
||||||
* 【extra 】 SpringUtil增加getApplicationName、publishEvent方法(issue#I485NZ@Gitee)
|
* 【extra 】 SpringUtil增加getApplicationName、publishEvent方法(issue#I485NZ@Gitee)
|
||||||
|
* 【core 】 BeanUtil.getProperty增加判空(issue#I488HA@Gitee)
|
||||||
|
|
||||||
### 🐞Bug修复
|
### 🐞Bug修复
|
||||||
|
|
||||||
|
@ -283,18 +283,18 @@ public class BeanUtil {
|
|||||||
if (bean instanceof Map) {
|
if (bean instanceof Map) {
|
||||||
return ((Map<?, ?>) bean).get(fieldNameOrIndex);
|
return ((Map<?, ?>) bean).get(fieldNameOrIndex);
|
||||||
} else if (bean instanceof Collection) {
|
} else if (bean instanceof Collection) {
|
||||||
try{
|
try {
|
||||||
return CollUtil.get((Collection<?>) bean, Integer.parseInt(fieldNameOrIndex));
|
return CollUtil.get((Collection<?>) bean, Integer.parseInt(fieldNameOrIndex));
|
||||||
} catch (NumberFormatException e){
|
} catch (NumberFormatException e) {
|
||||||
// 非数字,see pr#254@Gitee
|
// 非数字,see pr#254@Gitee
|
||||||
return CollUtil.map((Collection<?>) bean, (beanEle)-> getFieldValue(beanEle, fieldNameOrIndex), false);
|
return CollUtil.map((Collection<?>) bean, (beanEle) -> getFieldValue(beanEle, fieldNameOrIndex), false);
|
||||||
}
|
}
|
||||||
} else if (ArrayUtil.isArray(bean)) {
|
} else if (ArrayUtil.isArray(bean)) {
|
||||||
try{
|
try {
|
||||||
return ArrayUtil.get(bean, Integer.parseInt(fieldNameOrIndex));
|
return ArrayUtil.get(bean, Integer.parseInt(fieldNameOrIndex));
|
||||||
} catch (NumberFormatException e){
|
} catch (NumberFormatException e) {
|
||||||
// 非数字,see pr#254@Gitee
|
// 非数字,see pr#254@Gitee
|
||||||
return ArrayUtil.map(bean, Object.class, (beanEle)-> getFieldValue(beanEle, fieldNameOrIndex));
|
return ArrayUtil.map(bean, Object.class, (beanEle) -> getFieldValue(beanEle, fieldNameOrIndex));
|
||||||
}
|
}
|
||||||
} else {// 普通Bean对象
|
} else {// 普通Bean对象
|
||||||
return ReflectUtil.getFieldValue(bean, fieldNameOrIndex);
|
return ReflectUtil.getFieldValue(bean, fieldNameOrIndex);
|
||||||
@ -329,12 +329,15 @@ public class BeanUtil {
|
|||||||
* @param <T> 属性值类型
|
* @param <T> 属性值类型
|
||||||
* @param bean Bean对象,支持Map、List、Collection、Array
|
* @param bean Bean对象,支持Map、List、Collection、Array
|
||||||
* @param expression 表达式,例如:person.friend[5].name
|
* @param expression 表达式,例如:person.friend[5].name
|
||||||
* @return Bean属性值
|
* @return Bean属性值,bean为{@code null}或者express为空,返回{@code null}
|
||||||
* @see BeanPath#get(Object)
|
* @see BeanPath#get(Object)
|
||||||
* @since 3.0.7
|
* @since 3.0.7
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
public static <T> T getProperty(Object bean, String expression) {
|
public static <T> T getProperty(Object bean, String expression) {
|
||||||
|
if (null == bean || StrUtil.isBlank(expression)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
return (T) BeanPath.create(expression).get(bean);
|
return (T) BeanPath.create(expression).get(bean);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -546,7 +549,7 @@ public class BeanUtil {
|
|||||||
* @since 5.2.4
|
* @since 5.2.4
|
||||||
*/
|
*/
|
||||||
public static <T> T toBean(Object source, Class<T> clazz, CopyOptions options) {
|
public static <T> T toBean(Object source, Class<T> clazz, CopyOptions options) {
|
||||||
if(null == source){
|
if (null == source) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
final T target = ReflectUtil.newInstanceIfPossible(clazz);
|
final T target = ReflectUtil.newInstanceIfPossible(clazz);
|
||||||
@ -724,14 +727,14 @@ public class BeanUtil {
|
|||||||
* @return 复制后的List
|
* @return 复制后的List
|
||||||
* @since 5.6.4
|
* @since 5.6.4
|
||||||
*/
|
*/
|
||||||
public static <T> List<T> copyToList(Collection<?> collection, Class<T> targetType, CopyOptions copyOptions){
|
public static <T> List<T> copyToList(Collection<?> collection, Class<T> targetType, CopyOptions copyOptions) {
|
||||||
if(null == collection){
|
if (null == collection) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
if(collection.isEmpty()){
|
if (collection.isEmpty()) {
|
||||||
return new ArrayList<>(0);
|
return new ArrayList<>(0);
|
||||||
}
|
}
|
||||||
return collection.stream().map((source)->{
|
return collection.stream().map((source) -> {
|
||||||
final T target = ReflectUtil.newInstanceIfPossible(targetType);
|
final T target = ReflectUtil.newInstanceIfPossible(targetType);
|
||||||
copyProperties(source, target, copyOptions);
|
copyProperties(source, target, copyOptions);
|
||||||
return target;
|
return target;
|
||||||
@ -748,7 +751,7 @@ public class BeanUtil {
|
|||||||
* @return 复制后的List
|
* @return 复制后的List
|
||||||
* @since 5.6.6
|
* @since 5.6.6
|
||||||
*/
|
*/
|
||||||
public static <T> List<T> copyToList(Collection<?> collection, Class<T> targetType){
|
public static <T> List<T> copyToList(Collection<?> collection, Class<T> targetType) {
|
||||||
return copyToList(collection, targetType, CopyOptions.create());
|
return copyToList(collection, targetType, CopyOptions.create());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -764,6 +767,9 @@ public class BeanUtil {
|
|||||||
* @since 4.0.6
|
* @since 4.0.6
|
||||||
*/
|
*/
|
||||||
public static boolean isMatchName(Object bean, String beanClassName, boolean isSimple) {
|
public static boolean isMatchName(Object bean, String beanClassName, boolean isSimple) {
|
||||||
|
if (null == bean || StrUtil.isBlank(beanClassName)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
return ClassUtil.getClassName(bean, isSimple).equals(isSimple ? StrUtil.upperFirst(beanClassName) : beanClassName);
|
return ClassUtil.getClassName(bean, isSimple).equals(isSimple ? StrUtil.upperFirst(beanClassName) : beanClassName);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -777,7 +783,7 @@ public class BeanUtil {
|
|||||||
* @return bean
|
* @return bean
|
||||||
* @since 5.6.4
|
* @since 5.6.4
|
||||||
*/
|
*/
|
||||||
public static <T> T edit(T bean, Editor<Field> editor){
|
public static <T> T edit(T bean, Editor<Field> editor) {
|
||||||
if (bean == null) {
|
if (bean == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@ -803,7 +809,7 @@ public class BeanUtil {
|
|||||||
* @return 处理后的Bean对象
|
* @return 处理后的Bean对象
|
||||||
*/
|
*/
|
||||||
public static <T> T trimStrFields(T bean, String... ignoreFields) {
|
public static <T> T trimStrFields(T bean, String... ignoreFields) {
|
||||||
return edit(bean, (field)->{
|
return edit(bean, (field) -> {
|
||||||
if (ignoreFields != null && ArrayUtil.containsIgnoreCase(ignoreFields, field.getName())) {
|
if (ignoreFields != null && ArrayUtil.containsIgnoreCase(ignoreFields, field.getName())) {
|
||||||
// 不处理忽略的Fields
|
// 不处理忽略的Fields
|
||||||
return field;
|
return field;
|
||||||
|
@ -257,6 +257,13 @@ public class BeanUtilTest {
|
|||||||
Assert.assertEquals("sub名字", subName);
|
Assert.assertEquals("sub名字", subName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@SuppressWarnings("ConstantConditions")
|
||||||
|
public void getNullPropertyTest() {
|
||||||
|
final Object property = BeanUtil.getProperty(null, "name");
|
||||||
|
Assert.assertNull(property);
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void getPropertyDescriptorsTest() {
|
public void getPropertyDescriptorsTest() {
|
||||||
HashSet<Object> set = CollUtil.newHashSet();
|
HashSet<Object> set = CollUtil.newHashSet();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user