我正在尝试使用 MongoDB 数据库的 JHipster。对于我的示例,我想存储书籍。为此,我想使用 JDL 格式来生成实体、存储库、服务、dtos……</p>
这是我的实际 JDL 文件:它有效:
entity Book {
name String required
date LocalDate required
}
dto all with mapstruct
paginate all with pager
service all with serviceImpl
现在,我想添加一个概念,即 aBook
可以由 a 编写Author
。
我可以添加一个实体Author
:
entity Author {
firstane String required
lastname LocalDate required
}
我的具体问题是:如何关联 anAuthor
和 a Book
?
该文档有这个例子:
relationship OneToMany {
Author{book} to Book{writer(name) required}
}
但这不起作用,因为 NoSQL 数据库不支持关系。那么,我该如何实现呢?
谢谢。