@ManyToOne

From NovaOrdis Knowledge Base
Revision as of 02:07, 18 November 2018 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

Internal

Overview

The @ManyToOne annotation in the example below indicates that the Order belongs to one and only one User, but a User can have many Orders.

<syntaxhighlight lang='java'> @Entity public class Order {

 ...
 @ManyToOne
 private User user;

} </syntaxhighligh>