My Java bean looks like below public class AuditRptDTO {
private Date timestamp;
private String userId;
private String stName;
private String userType;
private String code;
private Clob oldRecord;
private Clob newRecord;
private String serverIp;
} here in place of oldRecord and newRecord i need to save another bean object. how can i achieve this in hibernate using an XML mapping.