代码拉取完成,页面将自动刷新
org.springframework.beans.ConfigurablePropertyAccessor
作为接口本文仅介绍方法列表, 实现类相关请查看后续文章
public interface ConfigurablePropertyAccessor extends PropertyAccessor, PropertyEditorRegistry, TypeConverter {
/**
* Return the associated ConversionService, if any.
* 获取类型转换服务
*/
@Nullable
ConversionService getConversionService();
/**
* Specify a Spring 3.0 ConversionService to use for converting
* property values, as an alternative to JavaBeans PropertyEditors.
* 设置类型转换服务
*/
void setConversionService(@Nullable ConversionService conversionService);
/**
* Return whether to extract the old property value when applying a
* property editor to a new value for a property.
* 是否需要修改老的对象数据
*/
boolean isExtractOldValueForEditor();
/**
* Set whether to extract the old property value when applying a
* property editor to a new value for a property.
*
* 是否需要修改老的对象数据
*/
void setExtractOldValueForEditor(boolean extractOldValueForEditor);
/**
* Return whether "auto-growing" of nested paths has been activated.
* 嵌套注入的时候是否为null的情况下是否需要创建对象
*/
boolean isAutoGrowNestedPaths();
/**
* Set whether this instance should attempt to "auto-grow" a
* nested path that contains a {@code null} value.
* <p>If {@code true}, a {@code null} path location will be populated
* with a default object value and traversed instead of resulting in a
* {@link NullValueInNestedPathException}.
* <p>Default is {@code false} on a plain PropertyAccessor instance.
*
* 嵌套注入的时候是否为null的情况下是否需要创建对象
*/
void setAutoGrowNestedPaths(boolean autoGrowNestedPaths);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。