框架第十二天

                                SSH框架整合+Spring事务全注解开发和XML开发

web.xml配置文件: 配置Struts2和 监听器listener (applicationContext.xml视情况而定)



   
  
    index.jsp
  
  
  
    struts2
    
        org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
    
  
  
    struts2
    /*
  
  
   
  
  contextConfigLocation
  classpath:applicationContext.xml
  
  
  
  org.springframework.web.context.ContextLoaderListener
  
  

applicationContext.xml配置文件




    
    
    
    
    
            
        
        
        
        
        
        
        
        
        
    
      
    
    
    
    
    
    org.hibernate.dialect.MySQLDialect
    update
    true
    
    true
    
    
    
    
        com/entity/Publish.hbm.xml
        
    
       

基于全注解开发


    
    
    
    
    
        
        
    
        

基于XML开发



    
    
    
    
    
    
            
        
        
        
        
        
        
        
        
        
    
          
    
    
    
    
    
    org.hibernate.dialect.MySQLDialect
    update
    true
    
    true
    
    
    
    
        com/baidu/entity/Dept.hbm.xml
        com/baidu/entity/Person.hbm.xml
        
    
       
    
    
    
    
    
    
    
        
    
    
    
    
     
    
    
    
    
    
    
      
      
      
      
      
       
      
      
    
      
    
        

struts2配置文件





 



 



/WEB-INF/per/list.jsp
/WEB-INF/per/add.jsp
/WEB-INF/per/update.jsp
/per_list


    

dao层

框架第十二天_第1张图片
dao层.png
框架第十二天_第2张图片
dao层.png

service层


框架第十二天_第3张图片
service层.png
框架第十二天_第4张图片
service层.png

controller层

框架第十二天_第5张图片
控制层.png

aspect切面相当于拦截器

框架第十二天_第6张图片
interceptor层.png

默认勾选

框架第十二天_第7张图片
默认勾选.png

Person.hbm.xml映射文件





  
    
      
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
      
    
    
  

Dept.hbm.xml映射文件





  
    
      
      
    
    
      
    
    
      
      
    
  

aop全注解关键字

框架第十二天_第8张图片
aop全注解.png
链接: http://pan.baidu.com/s/1dE8UGsL 密码: cw9f

你可能感兴趣的:(框架第十二天)