Hibernate异常之Exception in thread "main" org.hibernate.HibernateException: createQuery is not valid...

这篇博客主要介绍了在使用Hibernate 3.6.10.Final版本时遇到的'Exception in thread "main" org.hibernate.HibernateException: createQuery is not valid without active transaction'异常。异常源于在执行查询操作时没有激活的事务。为解决此问题,文章提供了示例代码,强调在Hibernate查询中必须包含事务管理。作者欢迎大家交流其他可能的解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1、异常描述

Exception in thread "main" org.hibernate.HibernateException: createQuery is not valid without active transaction

备注:

      此处hibernate版本号3.6.10.Final

2、示例代码

以下是部分示例代码:

public class ClazzDao {
	
	public List<Clazz> findAll(){
		// 1、创建配置对象     查找hibernate.cfg.xml文件
		Configuration configure = new Configuration().configure();
		// 2、创建session工厂
		SessionFactory sessionFactory = configure.buildSessionFactory();
		// 3、创建session
		Session session = sessionFactory.getCurrentSession();
		// 4、创建Query对象(hql语句)
		Query query = session.createQuery("from Clazz");
		// 5、执行查询
		List list = query.list();
		return list;
	}
	
}

/*   测试代码   */
public class TestClazzDao {
	ClazzDao clazzDao = new ClazzDao();
	@Test // 测试查询
	public void test
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值