我正在尝试使用hibernate编写一个用于数据库访问的网站。保存我可以正常工作,但是当我尝试在执行session.createQuery调用时调用我的getList方法时,代码只是放入finally方法而不会抛出异常让我有点困惑!
代码如下:
public List<Category> getCategories() {
//insertCategory();
System.out.println("in get categories");
List<Category> result = null;
Session session = HibernateUtil.getSessionfactory().openSession();
Transaction transaction = null;
try {
transaction = session.beginTransaction();
Query cats = session.createQuery("from category where is_parent = 1");
result = cats.list();
transaction.commit();
for (java.util.Iterator<Category> it = result.iterator();it.hasNext();){
Category myCategory = it.next();
System.out.println(myCategory);
}
calculateBlueprintSize(result.size());
} catch (HibernateException e) {
// TODO: handle exception
transaction.rollback();
e.printStackTrace();
} catch (Exception ee) {
ee.printStackTrace();
} finally {
session.close();
}
return result;
}
我的插入工作正常(现在硬编码只是为了证明我可以连接到数据库)
public void insertCategory() {
Category newCat = new Category();
newCat.setActive(new Integer(1));
newCat.setCategoryDescription("my test category");
newCat.setCategoryName("my cat name");
newCat.setLastUpdatedDate(new Timestamp(new Date().getTime()));
newCat.setParent(new Integer(1));
newCat.setSequence(new Integer(1));
Session session = HibernateUtil.getSessionfactory().getCurrentSession();
try {
session.beginTransaction();
// user.setUserId(new Long(2));
session.save(newCat);
session.getTransaction().commit();
} finally {
session.close();
}
}
Thi基于访问MySQL数据库。
任何帮助将不胜感激,我一直无法找到任何可以帮助我的东西,我是Hibernate的新手,所以开始考虑使用带有ehcache的本机sql切换回DAO模式可能是最好的事情。 ...
由于
马特
答案 0 :(得分:2)
我相信您从RuntimeException
调用中获得createQuery
,因为您正在将SQL名称与HQL名称混合在一起。我假设您的表名为category
,is_parent
列是该表中的字段。如果要使用HQL查询,则需要使用Category
实体上的属性名称,即parent
,而不是is_parent
。