基于Eclipse搭建SSH框架:第三篇 整合Hibernate

上一篇博文中介绍了struts与spring的整合过程,本博文将在上一篇的基础上讲解如何将struts、spring与hibernate整合在一起。

1.将hibernate所需的jar包复制到WebContent/WEB-INF/lib下

基于Eclipse搭建SSH框架:第三篇 整合Hibernate_第1张图片

2.在applicationContext中添加如下内容

	
	
		
		
			com.mysql.jdbc.Driver
		
		
		
			jdbc:mysql://localhost:3306/test
		

		
		
			root
		
		
		
			toor
		
	

	
	
		
		
			
		
		
		
			
		  com/hibernate/entity/User.hbm.xml
			
		

		
		
			
				
				
					org.hibernate.dialect.MySQLDialect
				
				

				true
			

		
	

         至此,SSH框架搭建完毕。下一篇博文将通过一个小例子介绍如何使用SSH进行开发。


        注:由于整合struts2、spring3与hibernate4时会报各种错误,所以本三篇博文中使用的hibernate一律改为hibernate3.6.7

你可能感兴趣的:(J2EE)