spring-boot-jpa/hibernate-postgresql

xzlaal3s  于 2021-07-26  发布在  Java
关注(0)|答案(2)|浏览(383)

所以我正在尝试实现我在网上为一个学校项目找到的数据库,我有asp.net核心和enitty框架核心的经验,但我以前从未使用过spring。db是这样的:

所以我的问题是:如果我想保存一个演员列表而不仅仅是一个演员的话,我的moviecast实体会是什么样子?

rekjcdws

rekjcdws1#

@ManyToOne(fetch = FetchType.EAGER)
@JoinColumn(name = "actorId", insertable=false, updatable=false)
Actor actor;

@Column(name = "actorId", nullable=false)
Long actorId;

希望这会有帮助。

xam8gpfp

xam8gpfp2#

你可以使用多对多关系
你有不同的方法来达到你的目标
更多信息请查看链接

相关问题