For Entities and their properties it is possible to specify a name when the class or property name differs from the label or propery name in the database. e.g.
@Entity(name = "TVSHOW")
public class TvShow implements Serializable {
@Column(name = "title")
private String name;
}
Unfortunately there seems to be no equivalent for Associations. Either add this feature or enhance the documentation if this is already possible, please. |