我不知道如何准确地表达我正在寻找的东西,所以我会解释我所拥有的,然后我正在尝试做什么。
我有一个Class模型,它有两个具有一对多单向关系的类。
public class TaxType extends Entity implements java.io.Serializable {
//stuff
private Set<TaxTypeAttribute> listTaxTypeAttribute = new HashSet<>(0);
}
public class TaxTypeAttribute extends Entity implements java.io.Serializable {
private String attributeName;
//stuff, but no reference to TaxType
}
实体类就像一个主键标准,我们称之为“OID设计模式”,但不知道它是否像英语中那样。
public class Entity {
private String oid;
//constructor, get and set
}
在映射上,它是这样的:
<class name="entity.TaxType" table="taxttype" catalog="tax_type" optimistic-lock="version">
<id name="oid" type="string">
<column name="OIDtt" length="50" />
<generator class="uuid2" />
</id>
<set name="listAtributoTipoImpuesto">
<key column="OIDtt" not-null="true"/>
<one-to-many class="entidades.AtributoTipoImpuesto" />
</set>
</class>
<!-- two separated files, this is just for showing -->
<class name="entity.TaxTypeAttribute" table="taxtypeattribute" catalog="tax_type" optimistic-lock="version">
<id name="oid" type="string">
<column name="OIDtta" length="50" />
<generator class="uuid2" />
</id>
<property name="attributeName" type="string">
<column name="attributeName" length="50" not-null="true" />
</property>
</class>
在程序的一个步骤中,我有TaxType和TaxTypeAttribute中的attributeName
,但我需要获取完整的TaxTypeAttribute。我通过Criteria API进行查询。我可以做taxType.getListTaxTypeAttribute();
并做一个循环,直到找到对象,但我想知道是否有办法使用一些Hibernate查询。
我尝试过taxType.getOid();
然后使用它和attributeName
,但它会引发异常:
Exception in thread "main" org.hibernate.QueryException: could not resolve property: OIDtt of: entity.TaxTypeAttribute
任何线索?谢谢你,请原谅我的英语不好
编辑:为了遵循设计模式,我们使用此方法执行SELECT查询:Awful thing we use for querys。 我这样做是这样的:
ArrayList<DTOCriteria> criteriaList = new ArrayList<>();
DTOCriteria c1 = new DTOCriteria();
c1.setAttribute("OIDtt");
c1.setOperation("=");
c1.setValue(taxType.getOID());
criteriaList.add(c1);
ArrayList<Object> found = search("TaxTypeAttribute");
我可以添加另一个DTOCriteria,如果我想要(“attributeName”;“=”; attributeName,例如),但如果前者不起作用,那就没用了。我也尝试过(因为它是免费的)使用“TaxType”作为属性,使用TaxType对象作为值,但也没有用。
PS:代码有效。我将它用于其他查询和工作,它只适用于这个,或者我不知道如何使它工作。可能是你不能做那种搜索,我不知道。
答案 0 :(得分:0)
从HQL / JPQL角度来看,您可以将查询编写为:
SELECT tta FROM TaxType tt JOIN tt.listTaxTypeAttribute tta
WHERE tt.oid = :oid
AND tta.attributeName = :attributeName
此查询将返回符合指定条件的TaxTypeAttribute
个实例。如何将其翻译成您的查询语言是我无法帮助的。