Copying JavaBeans Instances: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=External= * https://dzone.com/articles/creating-deep-copy-javabeans =Internal= * Java Beans =Overview=")
 
Line 8: Line 8:


=Overview=
=Overview=
This article describes methods of copying Java Bean instances in such a way that changing the copy leaves the original object intact.
=Object.clone()=
=BeanUtils=

Revision as of 19:32, 15 October 2018

External

Internal

Overview

This article describes methods of copying Java Bean instances in such a way that changing the copy leaves the original object intact.

Object.clone()

BeanUtils