BeanUtils be located import org.apache.commons.beanutils.BeanUtils It's a bag
How to use it :
Map<String, Object> objectMap=new HashMap<String, Object>()
try {
BeanUtils.populate(corpusTranscribePage, objectMap);// take Map Corresponding key and value Assign values to the corpusTranscribePage In the object
} catch (IllegalAccessException | InvocationTargetException e) {
log.error(" Convert exceptions ", e);
}