Files
notes_estom/Java/Java三方库/commons-bean.md
yinkanglong b2f069ee8d java
2023-10-21 09:48:50 +08:00

839 B
Raw Blame History

https://commons.apache.org/

引入依赖

<dependency>
    <groupId>commons-beanutils</groupId>
    <artifactId>commons-beanutils</artifactId>
    <version>1.9.4</version>
</dependency>

BeanUtils/BeanUtilsBean

拷贝 cloneBean/copyProperties/copyProperty
获取getArrayProperty/getSimpleProperty/getProperty
其他操作setProperty设置属性 populate将Bean设置到Map中  describe将Bean转成Map  

PropertyUtils类

判断isReadable/isWriteable
获取
	getProperty/getSimpleProperty/getPropertyType 
	getReadMethod/getWriteMethod/getIndexedProperty/setIndexedProperty
	getMappedProperty/setMappedProperty/getNestedProperty/setNestedProperty  
	getPropertyDescriptor/getPropertyEditorClass
拷贝和设置copyProperties/setProperty/setSimpleProperty /clearDescriptors