|
When using the ImprovedNamingStrategy,
@Column(name = "sF") public int getSomeFoo() { return this.someFoo; }
correctly maps to org.hibernate.mapping.Column(sf)
public int getSomeBar() { return this.someBar; }
correctly maps to org.hibernate.mapping.Column(some_bar)
@Column(name = "someBaz") public int getSomeBaz() { return this.someBaz; }
incorrectly maps to org.hibernate.mapping.Column(some_baz) instead of org.hibernate.mapping.Column(someBaz). It looks like the NamingStrategy is confusing the column name with the property name.
|