Struts2 + Hibernate5 + Spring4整合测试

标签(空格分隔): Java框架


版本号:

struts2-2.5.5  
Hibernate-5.2.4 
Spring-4.3.4

JAR包

1. Struts2

Struts2 + Hibernate5 + Spring4整合测试_第1张图片
Paste_Image.png

2. Hibernate

Struts2 + Hibernate5 + Spring4整合测试_第2张图片
Paste_Image.png

3. Spring

Struts2 + Hibernate5 + Spring4整合测试_第3张图片
Paste_Image.png

4. others

Paste_Image.png

XML配置文件

1. web.xml



  S2SH
  
    index.jsp
  
  
    
    
    contextConfigLocation  
    classpath:applicationContext.xml  
    
    
    
      
        org.springframework.web.context.ContextLoaderListener  
      
      
    
    
    struts2  
    org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter  
     
  
    
    struts2  
    /*  
    
  
   
     
    openSessionInViewFilter  
    org.springframework.orm.hibernate4.support.OpenSessionInViewFilter  
      
      singleSession  
      true  
      
    
    
     
    openSessionInViewFilter  
    *.action  
    

2. struts.xml

  
  
      
  
      
      
    
        
            /success.jsp
            /index.jsp
        
    
      
   

3. hibernate.xml

  
  
  
  
      
        
        
        org.hibernate.dialect.MySQL5Dialect  

          
        true  
        
        
        update
  
  
      

4. applicationContext.xml

    
    
  
    
    
        
        
        
        
        
        
    
      
      
      
          
              
          
          
          
          
              
                com.java1234.entity  
              
          
      
  
      
      
          
      
  
      
      
          
          
              
              
              
              
              
              
              
              
              
              
              
              
              
              
          
      
      
   
      
      
          
          
      
  
      
      
  
  

包结构

  1. com.web.entity
  2. com.web.action
  3. com.web.dao
  4. com.web.dao.impl
  5. com.web.service
  6. com.web.service.impl
  7. com.web.util

简单的注册请求测试

GitHut地址

你可能感兴趣的:(Struts2 + Hibernate5 + Spring4整合测试)