feat:指数倍提升性能,使用缓存

This commit is contained in:
wangyu 2021-12-04 10:38:45 +08:00
parent 41bf2e49dc
commit 035fca6e4c
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ public class BeanProperty {
// 写入默认值
Object value = ReflectionUtils.getFieldValue(instance, property.name);
if (null != value) {
property.option("initialValue", property.name);
property.option("initialValue", value);
}
return property;
}