hibernate函数查询问题
select aclState&1, aclState&2 from t_acl; 对应实体ACL。这条语句用hibernate怎么写?不是createSQLQuery这种。还有我用hibernateTemplate怎么不能getSession(),Api上有这个方法。谢谢 --------------------编程问答-------------------- Query query=this.hibernateTemplate.getSessionFactory().getCurrentSession().createQuery("select aclState&1,aclState&2 from t_acl"); --------------------编程问答-------------------- 我的意思是用HQL怎么写,还有hibernateTemplate.getSession()这个怎么不行。 --------------------编程问答-------------------- hibernateTemplate.getSessionFactory().getCurrentSession();
hibernateTemplate.getSessionFactory().openSession();
以上是从连接池中获得连接
hibernateTemplate.getSession()貌似不是从连接池中获得
补充:Java , Java EE