使用 JPA/休眠注释映射字符串列表
2022-09-02 00:19:55
我想做这样的事情:
@Entity public class Bar {
@Id @GeneratedValue long id;
List<String> Foos
}
并让 Foos 保留在这样的表中:
foo_bars (
bar_id int,
foo varchar(64)
);
更新:
我知道如何映射其他实体,但在许多情况下,这有点过分。看起来,如果不创建另一个实体或最终在某个 blob 列中包含所有内容,则无法实现我所建议的操作。