在SpringMVC里面使用hibernate

在SpringMVC里面使用hibernate

1.导入的包


      
      
        org.springframework
        spring-web
        4.3.18.RELEASE
      
      
     
      

      
      
        org.springframework
        spring-webmvc
        4.3.18.RELEASE
      

      
      
        org.springframework
        spring-context
        4.3.18.RELEASE
      
      
    
    
      org.springframework
      spring-test
      4.3.18.RELEASE
      test
    
    
    
      org.springframework
      spring-orm
      5.1.5.RELEASE
    

    
      org.hibernate
      hibernate-core
      5.1.17.Final
    
      
      
        com.zaxxer
        HikariCP
        3.3.1
      
    
    
    
      org.apache.commons
      commons-dbcp2
      2.1.1
    




有部分包不需要以实际情况为主

2.在applicationContext,xml中所需要的设置



    
    
    
        
        
        
        
    
    
        
        
            
                com.hh.entity//进行扫包处理使用注解,来进行DAO层
            
        
        
            
                hibernate.dialect=org.hibernate.dialect.Oracle10gDialect
                hibernate.show_sql=true
                hibernate.format_sql=true
                hibernate.current_session_context_class=thread
                hibernate.hbm2ddl.auto=update
            
        
        
    
    
        
    
    

3.当然还需要编写web.xml的编写


  Archetype Created Web Application
  
    contextConfigLocation
    classpath:spring1.xml
  
  
    org.springframework.web.context.ContextLoaderListener
  
  
    spring
    org.springframework.web.servlet.DispatcherServlet
    
      contextConfigLocation
      classpath:spring1.xml
    
    1
  
  
    spring
    /
  


你可能感兴趣的:(在SpringMVC里面使用hibernate)