Hi
I am using BeanUtils.copyProperties() method to copy values from a form bean to a DTO. But, then i came across the same method in PropertyUtils class. What is the difference between these two methods?
Also, where do i find more documentation about commons BeanUtils? I've found the javadoc API on apache website. I need more documentation.
Thanx in advance
-
Difference between BeanUtils and PropertyUtils (1 messages)
- Posted by: Bharat Gandhari
- Posted on: December 02 2004 22:44 EST
Threaded Messages (1)
- PropertyUtils doesn't do the type conversion by Jiaqi Guo on December 10 2004 14:16 EST
-
PropertyUtils doesn't do the type conversion[ Go to top ]
- Posted by: Jiaqi Guo
- Posted on: December 10 2004 14:16 EST
- in response to Bharat Gandhari
While BeanUtils use the ConvertUtils to do the conversion. Get property methods in BeanUtils usually return String instead of original property value.