spring整合hibernate的两种方式

spring整合hibernate 有两种方式 1、注解方式 2、xml方式实现。

两种配置方式最大的不同就是注解方式不用写O/R映射配置文件,而xml方式实现的要配置O/R的配置文件。


1、注解方式 :(applicationContext.xml)



    
    
      
      	
      		classpath:jdbc.properties
      	
      
    
    
        
        
        
        
        
        
        
        
                     
    
        
        
            
                com.test.bean
            
        
        
            
                ${dialect}
                ${show_sql}
                ${format_sql}
                ${use_sql_comments}
                ${hbm2ddl.auto}
            
        
    
    
        
    
    
        
            
            
        
    
    
        
        
    



xml配置方式: ( applicationContext.xml )


         
    
    
      
    
    
    
    
      
      
      
      
      
      
      
      
    
    
    
    
      
      
          
            /com/cdzg/spring/bean/User.hbm.xml
          
      
      
        
                ${dialect}
                ${hbm2ddl.auto}
                ${show_sql}
                ${format_sql}
                ${use_sql_comments}
            
      
    
    
    
    
      
    
    
    
    
      
        
        
      
    
     
         
     
      
      
     
         
    
        
    
    
        
    
    
        
    





你可能感兴趣的:(ssh)