Spring和hibernate的整合03

方案一:仍然使用外部的hibernate.cfg.xml配置信息

applicationContext.xml要关联hibernate.cfg.xml
Spring和hibernate的整合03_第1张图片
LocalSessionFactoryBean源码在这个位置

测试类


Spring和hibernate的整合03_第2张图片
声明测试变量,引入applicationContext.xml配置文件,引入sessionFactory

方案二:在spring配置中放置hibernate配置信息

Spring和hibernate的整合03_第3张图片
applicationContext.xml
可千万别加什么乱七八糟的东西,马的老出[java.lang.IllegalStateException: Failed to load ApplicationContext

测试类里面要加载applicationContext.xml配置文件
引入sessionFactory的bean名


Spring和hibernate的整合03_第4张图片
测试类

你可能感兴趣的:(Spring和hibernate的整合03)