Recommended Bean Utility Libraries for Java
Posted
by Jim Ferrans
on Stack Overflow
See other posts from Stack Overflow
or by Jim Ferrans
Published on 2010-03-24T02:47:37Z
Indexed on
2010/03/24
2:53 UTC
Read the original article
Hit count: 440
I'm looking for a good, well-supported, and efficient Java library that uses reflection to automate JavaBean operations. These include making a deep copy of an arbitrary bean hierarchy (with nested lists and maps of beans), comparing two bean hierarchies for deep equality, and "transmorphing" one bean to another of a different class.
Some possibilities include Apache Commons BeanUtils, Spring's BeanUtils, and Java's Bean support.
Which libraries would you recommend?
© Stack Overflow or respective owner