码迷,mamicode.com
首页 > Web开发 > 详细

org.hibernate.QueryException: could not resolve property:

时间:2015-01-18 00:48:53      阅读:315      评论:0      收藏:0      [点我收藏+]

标签:

  项目一直报这个错误,网上也搜了很多相关的,有的说 hql 查询语句和 实体类没有对应起来,可是我的都对应了,还是不知道问题在哪。上代码

  

    public List<Survey> findMySurveys(User user) {
        String hql = "from Survey s join s.user u where u.id = ?" ;
        List<Survey> list = surveyDao.findEntityByHql(hql, user.getId()) ;
        return list ;
    }

对应的 hbm.xml:

 <many-to-one name="uesr" class="com.ysp.surveypark.model.User">
            <column name="UESR_ID" />
 </many-to-one>

实体类(set\get方法略):

public class Survey {
    private Integer id ;
    private String title = "未命名" ;
    private String preText = "上一步" ;
    private String nextText = "下一步" ;
    private String exitText = "退出" ;
    private String doneText = "完成" ;
    //创建时间
    private Date createTime = new Date() ;
    //创建 Survey-User n-1 的关联关系
    private User uesr ;
    //创建 Survey-Page 1-n 的关联关系
    private Set<Page> pages = new HashSet<Page>() ;
}

有谁知道错在哪嘛,实在没办法了

org.hibernate.QueryException: could not resolve property:

标签:

原文地址:http://www.cnblogs.com/alwaysjava/p/4231358.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!