我想使用hibernate条件,对子实体非关键字段进行限制以列出对象。
criteria.add(Restrictions.eq(“template.orientation”,orientation));
其中“template.orientation”是articleTemplate.template
中的一个字段当我尝试运行此命令时,会触发以下异常。
org.hibernate.QueryException:无法解析属性:template.orientation:com.media.web.bean.ArticleTemplate
你可以帮帮我吗?答案 0 :(得分:0)
你是否在ArticleTemplate中拥有getter和setter?
即:template.getOrientation() and template.setOrientation(Orientation)
?