SSH——Spring3整合hibernate4

jar包:

Spring:

SSH——Spring3整合hibernate4_第1张图片

hibernate:

SSH——Spring3整合hibernate4_第2张图片

扩展包:commons-dbcp-1.2.jar和commons-pool-1.3.jar 下载地址:点击打开链接

2.domain类映射文件:





    
        
            
            
        
        
            
        
        
            
        
    



3.配置applicationContext.xml








	    
	    
	    
	    
	     
	
	 
	 
   
	
	
	



     
     
	  
	      domain/User.hbm.xml
	   
     
     
	    
	        	hibernate.dialect=org.hibernate.dialect.MySQLDialect
	        	hibernate.hbm2ddl.auto=update
				hibernate.show_sql=false
				hibernate.format_sql=false	      
	  
    


4.测试:

public class Test {

public static void main(String[] args) {
	ApplicationContext ac=new ClassPathXmlApplicationContext("applicationContext.xml");
    SessionFactory t=(SessionFactory) ac.getBean("sessionFactory");
    Session s=t.openSession();
    Transaction t1=s.beginTransaction();
    User u=new User(1, "aa", "22");
    
    s.save(u);
    t1.commit();
}
}

保存成功证明:spring整合hibernate成功。

接下来就是整合spring和struts2.


你可能感兴趣的:(SSH——Spring3整合hibernate4)