ssm框架搭建二----环境搭建

这是整体的目录结构:



首先导入需要的包


接下来修改web.xml文件:



	Archetype Created Web Application
	
		contextConfigLocation
		classpath:spring-mybatis.xml
	
	
	
	
		encodingFilter
		org.springframework.web.filter.CharacterEncodingFilter
		true
		
			encoding
			UTF-8
		
	
	
		encodingFilter
		/*
	
	
		org.springframework.web.context.ContextLoaderListener
	
	
	
		org.springframework.web.util.IntrospectorCleanupListener
	
	
		SpringMVC
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath:spring-mvc.xml
		
		1
		true
	
	
		SpringMVC
		/
	
	
		/index.jsp
	
	
		15
	



然后编写相关xml文件

1:spring与mybatis:spring-mybatis.xml



	
	
	
	
		
	

	
		
		
		
		
		
		
		
		
		
		
		
		
		
		
	
	
	
	
		
		
			
		
		
		
	



	
	
		
	


	
	
		
			
				
					
						mysql
					
					
				
			
		
	

2:配置springmvc相关xml : spring-mvc.xml



	
	
	
	 
	
		
		
			
				
			
		
	
	
	
		
			
				text/html;charset=UTF-8
			
		
	
	
	
		
			
					
			
		
	
	
	
		
		
		
	
	
	  
        
          
        
          
        
          
     


最后编写jdbc.properties

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/weixin
username=root
password=root
initialSize=0
maxActive=20
maxIdle=20
minIdle=1
maxWait=60000

注意:mybatis mapper接口类存放路径为:src/com.wang.ssm.dao中;mapper.xml文件存放在resource/com.wang.ssm.mapper中

至此ssm环境已搭建完成


还有一些对分页的封装,基础dao接口的封装就不一一贴出来了,后面会附上项目源代码,需要的可以下载来看看

http://pan.baidu.com/s/1c1UxNY4

你可能感兴趣的:(ssm)