SpringMVC学习笔记

web.xml 配置

1、web.xml中配置mvc核心servlet即DispatcherServlet
 Archetype Created Web Application

  
    dispatcherServlet
    org.springframework.web.servlet.DispatcherServlet

    
      contextConfigLocation
      classpath:springmvc.xml
    
  

  
    dispatcherServlet

    /
  


  
    encodingFilter
    org.springframework.web.filter.CharacterEncodingFilter
    
      encoding
      utf-8
    
  
  
    encodingFilter

    /*
  

2、springmvc.xml中的配置




    

****
    


    
        
        
    

你可能感兴趣的:(javaweb,springmvc,java)