springframework.beans.BeanUtils
is very useful to copy objects, and I use the \"ignoreProperties\" option frequently. However, sometimes I want to copy only spe
If you don't want to use Commons BeanUtils you can still use Spring by using the BeanWrapper.
You will have to manually loop through all the properties so you will want to make a static helper method.
You can always just copy what copyProperties is doing and adjust to your liking: http://tinyurl.com/BeanUtils-copyProperties