org.springframework 3.0.x对应org.hibernate4.0.x版本
org.springframework 3.2.x对应org.hibernate4.2.x版本
org.springframework 4.0.x对应org.hibernate4.3.x版本
org.springframework 4.1.x对应org.hibernate5.0.x版本
org.springframework 4.3.x对应org.hibernate5.1.x版本
hibernate 各历史版本下载 http://sourceforge.net/projects/hibernate/files/
spring各历史版本下载 http://www.springsource.org/download
另一种方式是从maven仓库中,查看对应的hibernate版本
https://mvnrepository.com/artifact/org.hibernate/hibernate-entitymanager/4.3.0.Final
配置Hibernate4,Spring和Hibernate版本兼容问题
在Application.context.xml文件中配置Hibernate4
高亮显示的部分是配置hibernate4和hibernate5时必须要加上的,hibernate3之前的版本不需要这一句。
Spring和Hibernate版本兼容问题
目前Spring3.2.9只能支持Hibernate4.2,不能支持更高版本的,所以导入jar包时需要注意。