ManyToMany Mapping (вспомогательная таблица) + дополнительное поле + составной первичный ключ - PullRequest
2 голосов
/ 24 января 2012

Я пытаюсь реализовать эту структуру таблицы:

http://www.img -teufel.de / uploads / Unbenannt1d4f8a349jpg.jpg

(не внедрено из-за размера)

Он создает мои классы так, как я хочу, за исключением того, что в tbl_license_user_alerts нет составного первичного ключа.

Итак, как создать его в моем случае?

tbl_license:

@Entity
@Table( name = "tbl_license" )
public class License implements Serializable
{
  private static final long serialVersionUID = 1L;

  @Id
  @GeneratedValue
  @Column( name = "id", nullable = false, columnDefinition = "serial" )
  private int id;

  @ElementCollection
  @JoinTable( name = "tbl_license_user_alert" )
  private List<LicenseUserAlert> alerts;

  public int getId()
  {
    return id;
  }

  public void setId( int id )
  {
    this.id = id;
  }

  public List<LicenseUserAlert> getAlerts()
  {
    return alerts;
  }

  public void setAlerts( List<LicenseUserAlert> alerts )
  {
    this.alerts = alerts;
  }
}

tbl_user:

@Entity
@Table( name = "tbl_user" )
public class User implements Serializable
{
  private static final long serialVersionUID = 1L;

  @Id
  @GeneratedValue
  @Column( name = "id", nullable = false, columnDefinition = "serial" )
  private int id;

  @ElementCollection
  @JoinTable( name = "tbl_license_user_alert" )
  private List<LicenseUserAlert> alerts;

  public int getId()
  {
    return id;
  }

  public void setId( int id )
  {
    this.id = id;
  }

  public List<LicenseUserAlert> getAlerts()
  {
    return alerts;
  }

  public void setAlerts( List<LicenseUserAlert> alerts )
  {
    this.alerts = alerts;
  }
}

tbl_license_user_alert:

@Embeddable
public class LicenseUserAlert implements Serializable
{
  private static final long serialVersionUID = 1L;

  @ManyToOne
  @JoinColumn( name = "license_id"/*, columnDefinition = "int"*/ )
  private License license;

  @ManyToOne
  @JoinColumn( name = "user_id"/*, columnDefinition = "int"*/ )
  private User user;

  @Column( name = "timer", nullable = false, columnDefinition = "int default 86400" )
  private int timer = 86400

  public License getLicense()
  {
    return license;
  }

  public void setLicense( License license )
  {
    this.license = license;
  }

  public User getUser()
  {
    return user;
  }

  public void setUser( User user )
  {
    this.user = user;
  }

  public int getTimer()
  {
    return timer;
  }

  public void setTimer( int timer )
  {
    this.timer = timer;
  }
}

РЕДАКТИРОВАТЬ:

@danny.lesnik Тогда я 'получение исключения: org.hibernate.AnnotationException: com.example.my.entities.license.LicenseUserAlertId не должно иметь свойств @Id при использовании в качестве элемента @EmbeddedId: com.example.my.entities.user.User.alerts.collection &&.id

@Embeddable
public class LicenseUserAlert implements Serializable
{
  private static final long serialVersionUID = 1L;

  @EmbeddedId
  private LicenseUserAlertId id;

  @Column( name = "timer", nullable = false, columnDefinition = "int default 86400" )
  private int timer = 86400;

  public LicenseUserAlertId getId()
  {
    return id;
  }

  public void setId( LicenseUserAlertId id )
  {
    this.id = id;
  }

  public License getLicense()
  {
    return id.getLicense();
  }

  public void setLicense( License license )
  {
    id.setLicense( license );
  }

  public User getUser()
  {
    return id.getUser();
  }

  public void setUser( User user )
  {
    id.setUser( user );
  }

  public int getTimer()
  {
    return timer;
  }

  public void setTimer( int timer )
  {
    this.timer = timer;
  }
}

IdClass:

@Embeddable
public class LicenseUserAlertId implements Serializable
{
  private static final long serialVersionUID = 1L;

  @ManyToOne
  @JoinColumn( name = "license_id"/*, columnDefinition = "int"*/ )
  private License license;

  @ManyToOne
  @JoinColumn( name = "user_id"/*, columnDefinition = "int"*/ )
  private User user;

  public License getLicense()
  {
    return license;
  }

  public void setLicense( License license )
  {
    this.license = license;
  }

  public User getUser()
  {
    return user;
  }

  public void setUser( User user )
  {
    this.user = user;
  }
}

1 Ответ

3 голосов
/ 24 января 2012

Пожалуйста, смотрите этот пост

Отображение ManyToMany с составным первичным ключом и аннотацией:

В нем есть полный пример того, как сопоставить таблицы с составными первичными ключами.

Надеюсь, это поможет.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...