I have a lot of data objects, and I want to be able to generate a String
representing each object, without implementing a toString
method for each one.
I'm thinking of reflection for getting the fields and its values.
any other ideas?
thanks.
You are welcome to use ToStringBuilder from jakarta. It has 2 modes one requires adding all fields you need using API, other is reflection based:
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With