今天做了一个有关连的表,其中有个比较无语的东西,记下来:
实体类是Myeclipse自动生成的,
数据库字段lasttime是datetime类型,实体类lasttime被映射为Timestamp类型。然后再写hql语句时发生如题的错误
select new Handler(h.handlerid, h.empid, h.shopid, h.password, h.enable, h.lockable, h.lasttime, h.deletestatus, h.isupdate, e.empName, s.shopName)From Handler h, Shop s, Employee e where h.empid = e.id.empId and h.shopid = e.id.shopId and h.shopid = s.shopId
正确做法是将实体类的 Timestamp改为 Date类型,然后OK。