Spring,SpringMVC,Mybatis (SSM)框架的搭建

Spring,SpringMVC,Mybatis (SSM)框架的搭建_第1张图片Spring,SpringMVC,Mybatis (SSM)框架的搭建_第2张图片Spring,SpringMVC,Mybatis (SSM)框架的搭建_第3张图片

转载请注明出处:   http://blog.csdn.net/cnm_1314/article/details/47747743

搭建SSM框架参照一下步骤:
1.提供ssm所需jar包

    这些jar包包括三个框架所需要的,就不一一列举所属了
aopalliance-1.0.jar
asm-3.3.1.jar
aspectjweaver.jar
c3p0-0.9.1.jar
cglib-2.2.2.jar
commons-logging-1.1.1.jar
iText-2.1.3.jar
jackson-annotations-2.1.5.jar
jackson-core-2.1.5.jar
jackson-databind-2.1.5.jar
jackson-mapper-lgpl-1.8.1.jar
jackson-module-jaxb-annotations-2.1.5.jar
javassist-3.17.1-GA.jar
json-lib-2.3-jdk15.jar
json-taglib-0.4.1.jar
jstl.jar
log4j-1.2.17.jar
mybatis-3.2.1.jar
mybatis-spring-1.2.0.jar
mysql-connector-java-5.1.22-bin.jar
slf4j-api-1.7.2.jar
slf4j-log4j12-1.7.2.jar
spring-aop-3.2.2.RELEASE.jar
spring-aspects-3.2.2.RELEASE.jar
spring-beans-3.2.2.RELEASE.jar
spring-context-3.2.2.RELEASE.jar
spring-core-3.2.2.RELEASE.jar
spring-expression-3.2.2.RELEASE.jar
spring-jdbc-3.2.2.RELEASE.jar
spring-tx-3.2.2.RELEASE.jar
spring-web-3.2.2.RELEASE.jar
spring-webmvc-3.2.2.RELEASE.jar
standard.jar

2.编写web.xml配置文件



	FirstPrj_SSM
	
	
		webAppRootKey
		FirstPrj_SSM.root
	
	
	
	
		org.springframework.web.context.ContextLoaderListener
	

	
	
		contextConfigLocation
		classpath*:/**/applicationContext*.xml
	
	
	
		springmvc
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath*:/**/springmvc.xml
		
		1
	
	
		springmvc
		/
	

	
	
		characterEncodingFilter
		org.springframework.web.filter.CharacterEncodingFilter
		
			encoding
			UTF-8
		
	
	
		characterEncodingFilter
		/*
	
	
		login.jsp
	
我假设服务器容器为tomcat,那么部署项目,启动Tomcat时,会加载web.xml配置文件,在这里需要配置一个springmvc核心控制器( DispatcherServlet,他会拦截你所指定格式结尾的请求 委派给 HandlerMapping, HandlerMapping根据请求调用相应的controller来处理),前段控制器中的
                
			contextConfigLocation
			classpath*:/**/springmvc.xml
		
只是用来加载创建springmvc所属的bean(在springmvc配置文件中所定义的bean,比如你自定义的异常拦截器等),保存在上下文中,这里称为子上下文.而父上下文需要创建如service,dao等bean也放在上下文中,这里称为父上下文.有关这里的内容请百度.所以你还得配置个listener来加载父上下文内容
ContextLoaderListener  tomcat启动装配

3.编写spring配置文件

  applicationContext.xml




	
	
		
			${driver}
		
		
			${url}
		
		
		
			${user}
		
		
		
			${password}
		
		
		
			5
		
		
		
			30
		
		
		
			10
		
		
		
			60
		
		
		
			5
		
		
		
			0
		
		
		
			60
		
		
		
			30
		
		
		
			true
		
		
		
			false
		
	
	
	
	    
	    
	    
	        
	             classpath:main/java/com/cn/user/mapping/*.xml
	        
	    
	

	
	
		
	

	
	
		
			
			
		
	

	
	
	  
	



这里配置c3p0数据源时用到了${}表达式,值是在这里文件中配置的  具体请看截图目录

applicationContext-context.xml




	
	
		
			
				classpath:properties/jdbc.properties
				classpath:properties/log4j.properties
			
		
	

jdbc.properties 文件

 
  
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://?.?.?.?:3306/yi
user=root
password=root

min_conn=10
max_conn=30
max_wait=5000
#################C3p0#################
max_idle_time=1800

#################DBCP#################
max_idle=10

4. 编写Mybatis-config.xml配置文件




    
        
    

请看applicationContext.xml文件

	
	    
	    
	    
	        
	             classpath:main/java/com/cn/user/mapping/*.xml
	        
	    
	

注意这句话 :

以上就应该可以启动了

Mybatis-config.xml  Mybatis的配置文件

applicationContext.xml  Spring的配置文件

springmvc.xml  SpringMVC的配置文件

这里说几个可以启动失败的错误:

1.  可能回报 ClassNotFoundException ...少jar包

2. Setting property 'source' to 'org.eclipse.jst.jee.server:...... 那么打开在Eclipse里Tomcat服务器页面,下来 勾选 publish modules contexts to separate XML files选项

3. C3P0有关错误,  请检查数据库是否启动,用户名 密码是否正确(空格),如果一切正常还报 Connect错误,请看

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/yi    
user=root
password=root

改成url=jdbc:mysql://10.4.14.188:3306/yi   localhost换你本机ip地址

4.   注意mybatis地址的书写,否则spring托管不了(找不到配置文件)

5.  springmvc配置文件地址的书写Spring,SpringMVC,Mybatis (SSM)框架的搭建_第4张图片

你可能感兴趣的:(javaWeb)