-
Bug
-
Resolution: Done
-
Major
-
1.2.3.Final
-
None
The Faces scaffold generates initializers in the view bean for @OneToOne relationships. When a property based accessor is used, the initializer expression is incorrectly formed:
this.getX = new X();
This should instead have been:
this.x = new X();
Field based accessors are treated correctly however.