]
Emmanuel Bernard updated HHH-5175:
----------------------------------
Component/s: annotations
@Columm does not override column name for join table
----------------------------------------------------
Key: HHH-5175
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-5175
Project: Hibernate Core
Issue Type: Bug
Components: annotations
Environment: Hibernate Annotions 3.5.1-Final
MySQL 5.1
Reporter: Lynn Keeling
Priority: Minor
Using the code below, when the table TERRITORY_CHARACTER is created, two columns are
created: TERRITORY_ID and characters_CHARACTER_ID. Shouldn't the @Column annotation
override the default name and create a column called CHARACTER_ID instead of
characters_CHARACTER_ID?
<code>
public class Territory implements Serializable {
private static final long serialVersionUID = -8906914598601073008L;
@Id
@Column(name = "TERRITORY_ID", length = 50)
private String territoryId;
@ElementCollection(fetch = FetchType.LAZY)
@CollectionTable(name="TERRITORY_CHARACTER",
joinColumns=@JoinColumn(name="TERRITORY_ID"))
@Column(name="CHARACTER_ID")
private Set<Character> characters;
...
}
public class Character implements Serializable {
private static final long serialVersionUID = 845127746329423630L;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "CHARACTER_ID")
private Long characterId;
...
}
</code>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: