struts2+hibernate4+spring4的整合demo

这两天终于把三大框架给学完了,期间遇到了很多异常问题,不过最后也是一个人自己挺了过来。原因就是自学看的视频都是比较老的。下面把我的配置过程给大家看一下。

我配置的过程是:spring+hibernate+struts2,配置完一个框架就写一个测试函数。接下来我把web.xml、struts.xml和applicationContext.xml给贴出来
web.xml


  	
  



   contextConfigLocation
   classpath:applicationContext.xml



      org.springframework.web.context.ContextLoaderListener

  
    index.jsp
  
 	  

        OpenSessionInViewFilter
        org.springframework.orm.hibernate4.support.OpenSessionInViewFilter


        OpenSessionInViewFilter
        /*

 	

 	struts2
 	org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter


 	struts2
 	*.html

 	
	

	encoding
	org.springframework.web.filter.CharacterEncodingFilter
	
		encoding
		UTF-8
	


	encoding
	/*



struts.xml

  
    

	
	
	
	
	
	
	
		/WEB-INF/login.jsp
	
	
		
			/WEB-INF/showMessage.jsp
			login
		
	
	

applicationContext.xml



 
 	
 
 
   
 
 	
 
 
  
 	
 

		
 
 	
 

 
 
 	
 	
 	
 	
 	
 	
	
	
	
	
	
	
	
 


 
 
 
 
 	
 	
 		
 			com/bz/domain/Employee.hbm.xml
 			com/bz/domain/Department.hbm.xml
 		
 	
 	
 	
		
			${hibernate.dialect}
			${hibernate.show_sql}
			${hibernate.format_sql}
			
			
			
			true  
			true  	
			org.hibernate.cache.ehcache.EhCacheRegionFactory 
		
 	
 


 
 	
 	
 
 
 
 



你可能感兴趣的:(javaEE)