spring4.1.2、mybatis3.0.5、struts2.3.16.3搭建学习例子

此种搭建框架的例子已有很多,本文只供参考。

环境

myeclipse5.5GA、mysql、tomcat6.0、jdk6.0

版本

spring4.1.2、mybatis3.0.5、struts2.3.16.3,可去官网下载。

jar包

spring4.1.2、mybatis3.0.5、struts2.3.16.3搭建学习例子_第1张图片

spring4.1.2、mybatis3.0.5、struts2.3.16.3搭建学习例子_第2张图片

application.properties

#mysql version database setting
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost/website?useUnicode=true&characterEncoding=utf-8
jdbc.username=root
jdbc.password=root
hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect

#hibernate settings
hibernate.show_sql=true
hibernate.format_sql=true

#dbcp settings
dbcp.initialSize=5
dbcp.maxActive=20
dbcp.maxIdle=10
applicationContext.xml



	Spring公共配置 

	
	
		
		
		
			
				classpath*:/config/application.properties
			
		
	

	
	
	
   
   
       
       
       
       
       
       
       
       
		
       
		
		
		
		
		
		
   
   
	
	
	

	
	
		
	

	
	

	
	

	
	
		
		
		
			
	

	
	
		
			
	
sturts.xml



	
	
	
	
	
	
		
		
			
				
					AUTOMATIC
				
				
			
		

		

	

	

web.xml



	
	
	
		contextConfigLocation
		classpath*:/config/applicationContext.xml
	

	
	
	
		org.springframework.web.context.ContextLoaderListener
	

	
	  
	  
		struts2  
		org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter  
		 
            config
           
            struts-default.xml,struts-plugin.xml,config/struts.xml
        
	 
	  
		struts2  
		*.action
		REQUEST
		FORWARD 
	
	
	
	
  
    index.jsp
  

下载地址

http://download.csdn.net/detail/djl100/8228809



你可能感兴趣的:(spring4.1.2、mybatis3.0.5、struts2.3.16.3搭建学习例子)