|
Hibernate example source code file (Child1Entity.java)
The Hibernate Child1Entity.java source codepackage org.hibernate.envers.test.entities.manytomany.sametable;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.JoinTable;
import javax.persistence.ManyToMany;
import org.hibernate.annotations.WhereJoinTable;
import org.hibernate.envers.Audited;
/**
* @author Adam Warski (adam at warski dot org)
*/
@Entity
@Audited
public class Child1Entity {
@Id
@GeneratedValue
private Integer id;
private String child1Data;
public Child1Entity() {
}
public Child1Entity(String child1Data) {
this.child1Data = child1Data;
}
public Child1Entity(String child1Data, Integer id) {
this.child1Data = child1Data;
this.id = id;
}
@ManyToMany(fetch = FetchType.LAZY)
@JoinTable(
name = "children",
joinColumns = @JoinColumn(name = "child1_id"),
inverseJoinColumns = @JoinColumn(name = "parent_id", insertable = false, updatable = false)
)
@WhereJoinTable(clause = "child1_id is not null")
private List<ParentEntity> parents = new ArrayList
Other Hibernate examples (source code examples)Here is a short list of links related to this Hibernate Child1Entity.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.