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. {code} @Entity(name = "TVSHOW") public class TvShow implements Serializable { @Column(name = "title") private String name; } {code}
Unfortunately there seems to be no equivalent for Associations. Either add this feature or enhance the documentation if this is already possible, please.
I would expect it to look something like this: {code} @ManyToOne(name = "EXECUTED_BY" private Object executedBy; {code} |
|