java—如何使用dsl模型在telosys中生成@onetoone和@manytomy jpa关系

to94eoyn  于 2021-06-26  发布在  Java
关注(0)|答案(0)|浏览(230)

我试图用我自己的springboot模板和dsl模型生成类。在我的“.entity”文件中,我有:

Car {​​​​​
id : int {​​​​​ @Id, @AutoIncremented }​​​​​;
users : Employee [];
}​​​​​

Employee {​​​​​
id : long {​​​​​ @Id }​​​​​ ;
name : string ;
cars : Car[] ;
}​​​​​

我原以为jpa会有“很多人”的关系,但我没有。同样的道理:

Car {​​​​​
id : int {​​​​​ @Id, @AutoIncremented }​​​​​;
user : Employee;
}​​​​​

Employee {​​​​​
id : long {​​​​​ @Id }​​​​​ ;
name : string ;
car : Car;
}​​​​​

我期望有一个“一对一”的关系,但我不明白。看来我只能得到一个一个的和一个一个的。如何使用dsl模型获得@manytomany和@onetoone关系?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题