Comparison of JavaBeans / Diff

Is there a library that can compare two javabeans in their properties and tell you about the differences between them?

I thought this would be something BeanUtils will do, but cannot find it in the documentation.

Basically, I want to “break” them

+3
source share
1 answer

No, there is no library for this, because it is trivial to implement. Just use the code from link that artbristol provided in the comment.

0
source

All Articles