簡體   English   中英

JAVA:如何在休眠中連接同一表並選擇列的值

[英]JAVA : HOW TO Join same table in hibernate and select column's value

我有一個類別表。

createTable.sql

CREATE TABLE IF NOT EXISTS `product_category` (
  `category_id` int(11) NOT NULL AUTO_INCREMENT,
  `category_name` varchar(10) NOT NULL,
  `parent_category_id` int(11) DEFAULT NULL,
  `created_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `created_by` int(11) NOT NULL,
  PRIMARY KEY (`category_id`),
  KEY `created_by` (`created_by`),
  KEY `parent_category_id` (`parent_category_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 

ProductCategory.java

import java.sql.Timestamp;
import java.util.HashSet;
import java.util.Set;

import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.persistence.Table;

import org.hibernate.annotations.Cascade;

import javax.persistence.GeneratedValue;
import static javax.persistence.GenerationType.IDENTITY;
@Entity
@Table(name="product_category")
public class ProductCategory {
private int categoryId;
private String categoryName;
private Integer parentCategoryId;
private Timestamp createdOn;
private int createdBy;
@Id @GeneratedValue(strategy=IDENTITY)


@Column(name="category_id", unique=true, nullable=false)
public int getCategoryId() {
    return categoryId;
}
public void setCategoryId(int categoryId) {
    this.categoryId = categoryId;
}

   @Column(name="category_name", nullable=false, length=100)
public String getCategoryName() {
    return categoryName;
}
public void setCategoryName(String categoryName) {
    this.categoryName = categoryName;
}
@Column(name="parent_category_id")
public Integer getParentCategoryId() {
    return parentCategoryId;
}
public void setParentCategoryId(Integer parentCategoryId) {
    this.parentCategoryId = parentCategoryId;
}
@Column(name="created_on")
public Timestamp getCreatedOn() {
    return createdOn;
}
public void setCreatedOn(Timestamp createdOn) {
    this.createdOn = createdOn;
}
@Column(name="created_by")
public int getCreatedBy() {
    return createdBy;
}
public void setCreatedBy(int createdBy) {
    this.createdBy = createdBy;
}
public ProductCategory(String categoryName) {

    this.categoryName = categoryName;
}


public ProductCategory() {


}    

@ManyToOne(cascade=CascadeType.ALL)
@JoinColumn(name="parent_category_id")
private ProductCategory subcategory;

@OneToMany(mappedBy="subcategory")
private Set<ProductCategory> subordinates=new HashSet<ProductCategory>();
}
@ManyToOne
@JoinColumn(name = "parent_category_id")
public ProductCategory  getParentCategory() {
    return parentCategory;
}
public void setParentCategoryId(ProductCategory parentCategory) {
    this.parentCategory = parentCategory;
}

使用類似這樣的方法來添加對父類別的引用。

您可以以相同的方式為子類別列表添加@OneToMany

您在代碼中兩次提到了“ parent_category_id ”。 僅在“ @JoinColumn(name =“ parent_category_id”)”處需要。 以下是您要求的最終映射:

    @Id @GeneratedValue(strategy=GenerationType.AUTO)
    @Column(name="category_id", unique=true, nullable=false)
    private int categoryId;

    @Column(name="category_name", nullable=false, length=100)
    private String categoryName;

    @Column(name="created_on")
    private Timestamp createdOn;

    @Column(name="created_by")
    private int createdBy;

    @ManyToOne(cascade=CascadeType.ALL)
    @JoinColumn(name="parent_category_id")
    private ProductCategory subcategory;

    @OneToMany(mappedBy="subcategory")
    private Set<ProductCategory> subordinates=new HashSet<ProductCategory>();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM