我想在休眠状态下将属性保存在关联表上,但不知道如何。
我想出了以下示例:我有一个表 USERS、一个表 MEDIA(存储电影和书籍)和一个名为 USER_MEDIA 的关联表,如果用户“看到”了 MEDIA 和用户给出的评分,我将在其中存储.
问题:映射速率。我使用 XML 来进行映射,但如果它使您更容易,我也可以使用注释。
以下是我的代码片段:
create table USER(
UUID bigint not null auto_increment,
NAME text,
primary key (UUID)
);
create table MEDIA(
MEDIAID bigint not null auto_increment,
NAME text,
primary key (MEDIAID)
);
create table USER_MEDIA(
UUID bigint not null,
MEDIAID bigint not null,
RATE double,
RATE_FORMAT varchar(2),
primary key (UUID, MEDIAID)
);
alter table USER_MEDIA add foreign key (UUID) REFERENCES USER(UUID);
alter table USER_MEDIA add foreign key (MEDIAID) REFERENCES MEDIA(MEDIAID);
JAVA
public class User {
private Long id;
private String name;
private Double rating;
private String ratingFormat;
private Set<Media> medias = new HashSet<Media>();
//getters e setters
}
public class Media {
private Long id;
private String name;
private Double rate;
private String rateFormat;
private Set<User> users = new HashSet<User>();
//getters e setters
}
hbm.xml
<hibernate-mapping package="package.model">
<class name="User" table="USER">
<id name="id" column="UUID">
<generator class="native" />
</id>
<property name="name" type="text" />
<set name="medias" table="USER_MEDIA" cascade="all">
<key column="UUID" />
<many-to-many column="MEDIAID" class="package.model.Media" />
</set>
</class>
<class name="Media" table="MEDIA">
<id name="id" column="MEDIAID">
<generator class="native" />
</id>
<property name="name" type="text" />
<property name="rate" type="double" />
<property name="rateFormat" type="text" column="RATE_FORMAT" />
<set name="users" table="USER_MEDIA" cascade="all">
<key column="MEDIAID" />
<many-to-many column="UUID" class="package.model.User" />
</set>
</class>
</hibernate-mapping>