Spring MVC 配置文件 web.xml文件详解




    
    
        characterEncodingFilter
        org.springframework.web.filter.CharacterEncodingFilter
        
            encoding
            UTF-8
        
        
            forceEncoding
            true
        
    
    
        characterEncodingFilter
        /*
    
    
    
    
    
        org.springframework.web.context.ContextLoaderListener
    
    
    
    
        contextConfigLocation
        classpath:spring/applicationContext.xml
    

    
    
    
    
        default
        *.css
    
    
        default
        *.swf
    
    
        default
        *.gif
    
    
        default
        *.jpg
    
    
        default
        *.png
    
    
        default
        *.js
    
    
        default
        *.html
    
    
        default
        *.xml
    
    
        default
        *.json
    
    
        default
        *.map
    
    
    
    
        DispatcherServlet
        org.springframework.web.servlet.DispatcherServlet
        
        
            contextConfigLocation
            
            
            
            
            
            classpath:spring/dispatcher-servlet.xml
        
        1
    
    
        
        
        DispatcherServlet
        
        
        
        / 
    

    
        login.html
    
     
        404
        /nopage.html
    
     
        java.lang.NullPointerException
        /error.html
    
    
        360
    


你可能感兴趣的:(编程语言)