Hi Florian,
I corrected what I think is a bug in DomainEntityJPA2Annotation.vm. On line 727, the template reads:
public void set${columnClass}_ ($columnType $columnVar) {
this.${columnVar}_ = ${columnVar}_;
}
I think it should read:
public void set${columnClass}_ ($columnType $columnVar) {
this.${columnVar}_ = ${columnVar}; // NOTE: the missing underscore which now references incoming parameter
}