我需要你的帮助。

我在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;


知道我在做什么错?

最佳答案

@SecondaryTables用于表示一个实体是按列而不是并集分布在多个表上的。

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

09-05 21:37
查看更多