eclipse搭建SSM框架

环境:eclipse 、Tomcat8.5、Maven3.6

1.新建maven项目

eclipse搭建SSM框架_第1张图片

eclipse搭建SSM框架_第2张图片

eclipse搭建SSM框架_第3张图片

2.项目建立后上面有红叉

解决办法:

右键项目-->build path-- >configure and build-->在libraries那一栏下,选择ADD Libarry-->选择server Runtime-->选择tomcat然后finish-->apply然后关闭

3.pom.xml文件添加依赖


	4.0.0
	wust
	SSM
	war
	0.0.1-SNAPSHOT
	SSM Maven Webapp
	http://maven.apache.org
	
		
			junit
			junit
			3.8.1
			test
		

		
		
			org.springframework
			spring-context
			5.0.2.RELEASE
		
		
			org.springframework
			spring-aop
			5.0.2.RELEASE
		
		
			org.springframework
			spring-aspects
			5.0.2.RELEASE
		

		
		
			org.springframework
			spring-tx
			4.3.9.RELEASE
		
		
		
			org.springframework
			spring-jdbc
			4.3.9.RELEASE
		

		
		
			org.springframework
			spring-webmvc
			5.0.2.RELEASE
		
		
			jstl
			jstl
			1.2
		

		
		
			com.fasterxml.jackson.core
			jackson-core
			2.9.3
		
		
			com.fasterxml.jackson.core
			jackson-databind
			2.9.3
		

		
		
			org.mybatis
			mybatis
			3.4.5
		
		
		
			org.mybatis
			mybatis-spring
			1.3.1
		

		
		
			mysql
			mysql-connector-java
			5.1.45
		
		
		
			com.mchange
			c3p0
			0.9.5.2
		
	
	
		SSM
	

eclipse搭建SSM框架_第4张图片

4.SSM配置:4个配置文件

eclipse搭建SSM框架_第5张图片

web.xml配置



	
	
		org.springframework.web.context.ContextLoaderListener
	
	
		contextConfigLocation
		classpath:spring/spring-config.xml
	
	
	
		SpringMVC
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath:spring/springmvc-config.xml
		
	
	
		SpringMVC
		/
	

 

spring-config.xml配置



	
	  
	    
		
		
		
		
		
		 
		
		
		
	
	
	
	  
		 
		
	
	
	 
	  
		
		
	
	
	
	
		
	  
	
		
	
	 
	
	

 

springmvc-config.xml配置



	
	
		
			
			
		
	
	 
	
	
	
		
		
		
		
	
	 
	
	

mybatis-config.xml配置

  

              

5.将项目添加到tomcat运行没报错就是成功了

你可能感兴趣的:(JavaWeb)