|
Hibernate example source code file (Child.java)
The Hibernate Child.java source code//$Id$
package org.hibernate.test.annotations.manytoone;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.JoinColumns;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
/**
* TODO: change this sample with an Address -> Country relation. This is more accurate
*
* @author Emmanuel Bernard
*/
@Entity
@Table(name = "tbl_child")
public class Child implements Serializable {
@Id
@GeneratedValue
public Integer id;
@ManyToOne()
@JoinColumns({
@JoinColumn(name = "parentCivility", referencedColumnName = "isMale"),
@JoinColumn(name = "parentLastName", referencedColumnName = "lastName"),
@JoinColumn(name = "parentFirstName", referencedColumnName = "firstName")
})
public Parent parent;
}
Other Hibernate examples (source code examples)Here is a short list of links related to this Hibernate Child.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.