Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个 EJB/JPA 项目。
我有两张桌子: BusinessOwner和Clients。
BusinessOwner
Clients
这些表中的每一个都有一个超类,Person.
Person
我有一张桌子,可以保存他们的所有交易,包括BusinessOwner和Clients。在 Transaction 表中,我有一个字段UserID,它指向primary key和BusinessOwners,Clients作为foreign key。
UserID
primary key
BusinessOwners
foreign key
我如何将这些映射到我的实体类中。
您应该能够拥有从 Person 到 Transaction 的 OneToMany 和从 Transaction 到 Person 的 ManyToOne,但这取决于您如何映射继承?