Hibernate - jpa - spring - java
我有一个下表的实体。
table1
------
id, field1, field2
@Entity
public class Table1Entity{
private UUID id;
private String field1;
private String field2;
}
我想介绍将使用连接在运行时计算的字段。 所以我在tabl1上创建了一个视图,添加了一个列calc_field
table1_v
--------
id, field1, field2, calc_field
@Entity
public class Table1VEntity extends Table1Entity{
private Integer calcField;
}
问题1。这是正确的方法吗? 问题2。当我尝试从Table1Entity获取记录列表时,它会抛出异常
"DTYPE" invalid identifier InvalidDataAccessResoureUseageException nested exception is org.hibernate.exception.SQLGrammarException could not extract ResultSet