在学说中我有很多ToMany协会
Document:
manyToMany:
tags:
targetEntity: Tag
inversedBy: tags
joinTable:
name: documents_tags
Tag:
manyToMany:
documents:
targetEntity: Document
mappedBy: tags
并创建一个新表documents_tags
,其中document_id+tag_id
上有一个主键,每个表上都有普通键。但我想对两列tag_id
和document_id
有一个唯一的键约束。我怎么能实现呢?
答案 0 :(得分:0)
好的我可以自己回答,当我编辑我的问题时它向我透露:当然,主键已经是独一无二的了,所以它已经工作了。