Hi Folks, I have a brief question about the Commons Lang ToStringBuilder.reflectionToString method:
If I override the toString method as follows:
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
for a Hibernate CGLIB-enhanced bean, my understanding is that this will *not*
call the database because the reflectionToString method is accessing the fields
directly and not the getter methods.
Can you please clarify if I am correct?
Thanks for your help,
Tom
