java SSM框架整合——web.xml配置



	SSM框架整合

	
	
		CharacterEncodingFilter
		org.springframework.web.filter.CharacterEncodingFilter
		
			encoding
			UTF-8
		
		
			forceRequestEncoding
			true
		
		
			forceResponseEncoding
			true
		
	
	
		CharacterEncodingFilter
		/*
	
	
	
		httpMethodFilter
		org.springframework.web.filter.HiddenHttpMethodFilter
	

	
		httpMethodFilter
		springmvc
	
	
	
		springmvc
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			/WEB-INF/springmvc.xml
		
		2
	
	
		springmvc
		/
	
	
	 
        contextConfigLocation
        classpath:beans.xml
    
    
        org.springframework.web.context.ContextLoaderListener
    
	
	  
        log4jConfigLocation  
        classpath:log4j.properties  
          
      
        log4jRefreshInterval
          
        6000  
      
  
      
          
            org.springframework.web.util.Log4jConfigListener  
          
    

	
	
	  
          
            org.springframework.web.context.request.RequestContextListener  
          
	
	
	 
        org.springframework.web.util.IntrospectorCleanupListener
	
	
		index
	

 

你可能感兴趣的:(Java)