SSH整合配置之注解

 1. jar包的导入

            具体的jar包看我的测试项目点击打开链接

 2. web.xml配置文件的书写

       



	
	
		org.springframework.web.context.ContextLoaderListener
	
	
		contextConfigLocation
		classpath:applicationContext.xml
	

	
	
		openSessionInViewFilter
		org.springframework.orm.hibernate5.support.OpenSessionInViewFilter
	
	
		openSessionInViewFilter
		/*
	

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


   3. applicationContext.xml配置文件的书写



	
	
	
				
	
	
		
		
		
		
	
	
	
	
		
		
		
			
				org.hibernate.dialect.MySQL5Dialect
				update
				true
				true
			
		
		
		
			
				
				classpath:entity/*.xml
			
		
	
	
	
	
		
	
	
	
	
	
	
	
	
	
	


  4. db.properties配置文件的书写

jdbc.jdbcUrl=jdbc\:mysql\:///votepro
jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.user=root
jdbc.password=root

 5. struts.xml配置文件的书写



	
	
		
		
		
		
		
		
		
	
	
		
		
			
				/index.jsp
			
		
		

 6. 查看具体的测试项目点击打开链接



你可能感兴趣的:(day02)