Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am having a Java bean, which i want to clone it to get a new instance, but in the new instance, I want few of the properties to have values, others i don't want to be cloned/copied.

Example:-

Source:- Class ABC, Object src --> field1 = 10, field2 =5, field3 = 6, field4 = 20
Target:- Class ABC, Oject clone --> field1 = 10, field2 = 5, field3 = null, field4 = null

I can also use copyProperties but than, I have to create a similar but small class structure.

I can also use copyProperty but then, I have to write it multiple times.

Is there a good solution to this.

share|improve this question
1  
Then you don't want a clone. – Matt Ball Nov 9 '11 at 19:33
possible duplicate of Copy specific fields by using BeanUtils.copyProperties? – Dave Newton Nov 9 '11 at 20:13

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.