SSM框架整合需要配置的四个基本的XML文件

目录:
SSM框架整合需要配置的四个基本的XML文件_第1张图片

web.xml(自动生成)



  SSM_demo03
  
    index.html
    index.htm
    index.jsp
    default.html
    default.htm
    default.jsp
  
  
  
  	
	  
	
		
		springmvc
		
		org.springframework.web.servlet.DispatcherServlet
		1
	

	
		
		springmvc
		
		/
	
	
	
	
		contextConfigLocation
		
		classpath*:config/applicationContext.xml
	

	
		
		org.springframework.web.context.ContextLoaderListener
	
	
	
	
		encoding
		
		org.springframework.web.filter.CharacterEncodingFilter
		
		
		
			
			encoding
			UTF-8
		
		
			
			forceRequestEncoding
			true
		
		
			
			forceResponseEncoding
			true
		
	
	
		encoding
		
		/*
	


springmvc-servlet.xml(springmvcxml文件)



	
	
	
	
	
	
		
		
		
	


config.xml(普通的XML文件)




	
	
		
		
	


applicationContext.xml(springxml文件)



	
	
	
		
		
		
		
		
	
	
	
	
		
		
	
	
	
	
		
		
		
		
		
		
	
	
	
	
		
		
	



你可能感兴趣的:(框架)