Field[] fields = <class name>.getClass().getDecdlaredFields();
for(Field field: fields) {
String fieldName = field.getName();
log.info(" Fieldname : "+ fieldName);
}
This is giving me the name of the constructors with random characters like this :
CGLIB$getPTI$25
CGLIB$setPTI$26
The class here is actually a hibernate mapping class. It maps the data from the db.