在一个实体中映射三个相同的表

时间:2016-04-30 02:03:54

标签: java spring hibernate spring-boot

我需要你的帮助。

我在postgresql上运行的数据库上有3个表。它们是完全相同的结构。所以我想如果我能在一个实体中将它们映射出来。

我试试这个:

@Entity
@Table(name = "stock_tierra")
@SecondaryTables({
    @SecondaryTable(name = "stock_bebelandia"),
    @SecondaryTable(name = "stock_libertador")
})

public class Stock implements Serializable {

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id_stock", unique = true, nullable = false)
private int idStock;

@Column(name = "cantidad", nullable = false)
private int cantidad;

@ManyToOne(fetch = FetchType.EAGER)
@JoinColumn(name = "id_producto", nullable = false)
private Producto idProducto;

@Column(name = "estado", nullable = false)
private boolean estado;

@Column(name = "usuario_creacion", nullable = false)
private int usuarioCreacion;

@Column(name = "usuario_modificacion")
private Integer usuarioModificacion;

@Temporal(TemporalType.DATE)
@Column(name = "fecha_creacion", nullable = false, length = 13)
private Date fechaCreacion;

@Temporal(TemporalType.DATE)
@Column(name = "fecha_modificacion", length = 13)
private Date fechaModificacion;

@ManyToOne(fetch = FetchType.EAGER)
@JoinColumn(name = "id_sucursal", nullable = false)
private Sucursal idSucursal;

但是当我尝试查看一个表格时,我只会从第一个stock_tierra

中获取数据
String stockSucursal = null;
    switch (sucursal) {
        case 1:
            stockSucursal = "stock_tierra";
            break;
        case 2:
            stockSucursal = "stock_bebelandia";
            break;
        case 3:
            stockSucursal = "stock_libertador";
            break;
    }
    Criteria criteria = getSession().createCriteria(Stock.class, stockSucursal);
    criteria.add(Restrictions.eq("estado", true));
    criteria.addOrder(Order.asc("idStock"));
    List<Stock> list = criteria.list();
    return list;

知道我做错了什么?

1 个答案:

答案 0 :(得分:1)

@SecondaryTables用于表示一个实体按列分布在多个表中,作为联合。

我现在唯一能想到的是使用一个在所有表上都有联合的视图,但我不确定postgres是否可以处理可写视图,或者你是如何声明它们的(如果你甚至需要一个写接口。)