hibernate(xml方式)
查询数据库
引入包
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>5.2.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>5.4.18.Final</version>
</dependency>配置sessionFactory bean和transactionManager
hibernate.cfg.xml和*.hbm.xml
使用
Hibernate事务

sessionFactory.getCurrentSession()一定会开启事务
sessionFactory.getCurrentSession()一定会开启事务遇到的问题
hbm.xml not found
hbm.xml not found不能自动创建表
✅ 已解决
hibernate版本
Last updated