SSH环境搭建

  1. 配置web.xml
  • 配置Spring核心监听器,用于加载applicationContext.xml
    
        org.springframework.web.context.ContextLoaderListener
    

    
        contextConfigLocation
        classpath:applicationContext.xml
    
  • 配置struts2过滤器
    
        struts2
        org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
    
    
    
        struts2
        /*
    
  1. 配置applicationContext.xml
  • 配置链接池

    
    
        
        
        
        
    
  • 配置hibernate

    
        
        
        
            
                org.hibernate.dialect.MySQLDialect
                true
                true
                false
                update
            
        
        
        
            
                
            
        
    

  
    
        
    

  1. 配置strut.xml

    
    
        

你可能感兴趣的:(SSH环境搭建)