列出查询,限制子实体非主键问题

时间:2011-07-08 12:50:19

标签: java hibernate spring hibernate-mapping

我想使用hibernate条件,对子实体非关键字段进行限制以列出对象。

criteria.add(Restrictions.eq(“template.orientation”,orientation));

其中“template.orientation”是articleTemplate.template

中的一个字段

当我尝试运行此命令时,会触发以下异常。

org.hibernate.QueryException:无法解析属性:template.orientation:com.media.web.bean.ArticleTemplate

你可以帮帮我吗?

1 个答案:

答案 0 :(得分:0)

你是否在ArticleTemplate中拥有getter和setter? 即:template.getOrientation() and template.setOrientation(Orientation)