SSM项目搭建所需要的jar包和环境准备

下面是SSM项目中所用上的jar包,数据库驱动为mysql
SSM项目搭建所需要的jar包和环境准备_第1张图片
| SSM项目搭建所需要的jar包和环境准备_第2张图片
SSM项目搭建所需要的jar包和环境准备_第3张图片
SSM项目搭建所需要的jar包和环境准备_第4张图片
下面是环境准备,主要有七个配置文件
SSM项目搭建所需要的jar包和环境准备_第5张图片
SSM项目搭建所需要的jar包和环境准备_第6张图片
applicationContext.xml



    
    
    
    
         
         
         
         
         
         
         
         
         
         
         
         
         
         
	
	
	
		
		
	
	
	
		
			
			
			
			
			
			
			
			
			
			
		
	
	
	
		
	
	
	
		
		
		
		
	
	
	
		
	
	
		

db.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/nanitao?useUnicode=true&characterEncoding=UTF-8
jdbc.username=root
jdbc.password=root
jdbc.maxTotal=30
jdbc.maxIdle=10
jdbc.initialSize=5

mybatis-config.xml




	
	
		
	

springmvc-config.xml



    
    
    
    
    
    

    
    
    
    	 
    
    
		
		
    	
    
    
 	
    	
        	
        	
    	
		 

resource.properties

customer.from.type=002
customer.industry.type=001
customer.level.type=006

log4j.properties

# Global logging configuration
log4j.rootLogger=ERROR, stdout
# MyBatis logging configuration...
log4j.logger.cn.zdxh.nanitao=DEBUG
# Console output...
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n

web.xml



		
	
		contextConfigLocation
		classpath:applicationContext.xml
	
	
		
			org.springframework.web.context.ContextLoaderListener
		
	
	
	
		encoding
		
			org.springframework.web.filter.CharacterEncodingFilter
		
		
			encoding
			UTF-8
		
	
	
		encoding
		*.action
	
	
	
		crm
		
			org.springframework.web.servlet.DispatcherServlet
		
		
			contextConfigLocation
			classpath:springmvc-config.xml
		
		
		1
	
	
		crm
		*.action
	
	
	
		index.jsp
	

你可能感兴趣的:(项目jar包和环境准备)