SSM + freeMarker配置文件

目录结构:

SSM + freeMarker配置文件_第1张图片

1、web.xml



  mincoSup
  
    Text.jsp
  
  	
	
		Set Character Encoding
		org.springframework.web.filter.CharacterEncodingFilter
		
			encoding
			utf8
		
		
			forceEncoding
			true
		
	
	
		Set Character Encoding
		/*
	

	
	
		contextConfigLocation
				 
		   classpath:config/spring-context.xml
		
	

	
	
		org.springframework.web.context.ContextLoaderListener
	

	
	
		springMvc
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath:config/spring-servlet.xml
		
		1
	

	
		springMvc
		/
	
  
2、spring-context.xml



	
	

	
	
		
	

	
	
		
			
			
			
			
			
			
			
		
		
	

	
		
		
		
	

	
	
		
	
	


2-1、application-mybatis.xml





	
	
	
	
	
	
		
		
		
		
		
		
		
			
				LOG4J
			
		
	

	
	
		
		
		
	




2-2、application-dataSource.xml



 	
 	
 	
 
 
    
	
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
	
		
    
	

3、spring-servlet.xml




	
	
	
	
	

	
	
		
	


	
		
			
				
					classpath:config/properties/freemaker-variable.properties
				
			
		
	


	
	
		
		
		
			
				10
				zh_CN
				yyyy-MM-dd HH:mm:ss
				yyyy-MM-dd
				HH:mm:ss
				#.##
			
		

		
			
				
			
		

	

	
	
		
		
		
		
		
		
		
		
		
	

	
	
		
	


说明:

这个是指:



4、附datasource.properties & freemaker-variable.properties

datasource.properties:

jdbc_url = jdbc:mysql://127.0.0.1:3306/数据库名
jdbc_user = root
jdbc_password = xxx


 freemaker-variable.properties:

WebRoot=xxx //这个是指你的项目名:只是为了方便后续的开发(可以不需要)


你可能感兴趣的:(JAVA基础)