|
At first I thought it was only happening if the property names were the same as the @Column name attributes, but it's happening even in this case
@Column(name = "completelyDifferent") public int getSomeFoo() { return this.someFoo; }
incorrectly maps to org.hibernate.mapping.Column(completely_different).
|