Hi all, I am trying to include following
Code:
private org.springframework.web.multipart.commons.CommonsMultipartFile photo;
@Transient
public CommonsMultipartFile getPhoto() {
return photo;
}
public void setPhoto(CommonsMultipartFile photo) {
this.photo = photo;
}
in my pojo class generated from database table.
I have studied to find there is a way to mention extra class code in meta tag like following
http://www.scribd.com/doc/23123635/30/G ... ng-processbut this does not allow to add property variable photo.
Please suggest a way how can I do it in reveng.xml so that this code is included on every run of hbm2java.
Thanks in advance!