Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: f55978d0e93fbc3782a5c19e9d51a3d6f0d709fd (plain) (tree)



































































































                                                                                                                                                                                                                                                                                                                         
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta name="OAC_IGNORE_SKIP_NAV" content="true" />
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<title>Many-to-one mapping</title>
<meta name="generator" content="Oracle DARB XHTML Converter (Mode = ohj/ohw) - Version 1.0.11" />
<meta name="date" content="2013-07-11T10:17:39Z" />
<meta name="robots" content="noarchive" />
<meta name="doctitle" content="Many-to-one mapping" />
<meta name="relnum" content="Release 3.3" />
<meta name="partnum" content="Release 3.3" />
<link rel="copyright" href="dcommon/html/cpyr.htm" title="Copyright" type="text/html" />
<link rel="stylesheet" href="dcommon/css/blafdoc.css" title="Oracle BLAFDoc" type="text/css" />
<link rel="contents" href="toc.htm" title="Contents" type="text/html" />
</head>
<body>
<p><a id="BABHFAFJ" name="BABHFAFJ"></a></p>
<div class="sect2"><!-- infolevel="all" infotype="General" -->
<h1>Many-to-one mapping</h1>
<p><a id="sthref250" name="sthref250"></a><a id="sthref251" name="sthref251"></a><a id="sthref252" name="sthref252"></a><a id="sthref253" name="sthref253"></a>Use a <span class="bold">Many-to-One</span> mapping to defines a single-valued association to another entity class that has many-to-one multiplicity.</p>
<ol>
<li>
<p>In the <a href="ref_persistence_outline.htm#BABEGGFE">JPA Structure view</a>, select the field to map.</p>
</li>
<li>
<p>Right click the field and then select <span class="bold">Map As &gt; Many-to-One</span>. The <a href="ref_persistence_map_view.htm#BABIFBAF">JPA Details view (for attributes)</a> displays the properties for the selected.</p>
<div class="figure"><a id="sthref254" name="sthref254"></a>
<p class="titleinfigure">JPA Details, Many-to-one mapping</p>
<img src="img/jpa_details_manytoone.png" alt="JPA Details, Many-to-one mapping" title="JPA Details, Many-to-one mapping" /><br /></div>
<!-- class="figure" --></li>
<li>
<p>Complete each field in the <a href="reference039.htm#CACHAEDB">Many-to-One Mapping</a> area.</p>
</li>
<li>
<p>Complete the remaining areas in the <a href="ref_persistence_map_view.htm#BABIFBAF">JPA Details view (for attributes)</a>.</p>
</li>
</ol>
<p>Eclipse adds the following annotations to the field:</p>
<pre xml:space="preserve" class="oac_no_warn">
@JoinTable(joinColumns=@JoinColumn(name="<span class="italic">&lt;JOIN_COLUMN&gt;</span>"), 
    name = "<span class="italic">&lt;JOIN_TABLE_NAME&gt;</span>")
@ManyToOne(
    targetEntity=<span class="italic">&lt;TARGET_ENTITY&gt;</span>, 
    fetch=<span class="italic">&lt;FETCH_TYPE&gt;</span>, 
    =<span class="italic">&lt;_TYPE&gt;</span>
)
</pre>
<a id="sthref255" name="sthref255"></a>
<p class="subhead2">Related tasks</p>
<ul>
<li>
<p><a href="task_mapping.htm#BABDGBIJ">Mapping an entity</a></p>
</li>
</ul>
<a id="sthref256" name="sthref256"></a>
<p class="subhead2">Related references</p>
<ul>
<li>
<p><a href="ref_persistence_outline.htm#BABEGGFE">JPA Structure view</a></p>
</li>
<li>
<p><a href="ref_persistence_map_view.htm#BABIFBAF">JPA Details view (for attributes)</a></p>
</li>
<li>
<p><a href="reference047.htm#CACIJEGI">Joining Strategy</a></p>
</li>
<li>
<p><a href="reference048.htm#CACGHHGB">Derived Identity</a></p>
</li>
</ul>
<a id="sthref257" name="sthref257"></a>
<p class="subhead2">Related concepts</p>
<ul>
<li>
<p><a href="concept_mapping.htm#BABBDJFI">Understanding OR mappings</a></p>
</li>
<li>
<p><a href="concepts001.htm#BABBGFJG">Understanding Java Persistence API</a></p>
</li>
</ul>
</div>
<!-- class="sect2" -->
<!-- Start Footer -->
<div class="footer">
<table class="simple oac_no_warn" summary="" cellspacing="0" cellpadding="0" width="100%">
<col width="86%" />
<col width="*" />
<tr>
<td align="left"><span class="copyrightlogo">Copyright&nbsp;&copy;&nbsp;2011, 2013,&nbsp;Oracle&nbsp;and/or&nbsp;its&nbsp;affiliates.&nbsp;All&nbsp;rights&nbsp;reserved.</span><br />
<a href="dcommon/html/cpyr.htm"><span class="copyrightlogo">Legal Notices</span></a></td>
</tr>
</table>
</div>
<!-- class="footer" -->
</body>
</html>

Back to the top