1. contextConfigLocation
    1. 指定Spring IoC容器需要读取的XML文件路径
    2. 默认会去/WEB-INF/下加载applicationContext.xml
  2. ContextLoaderListener
    1. Spring监听器
    2. Spring MVC在Web容器中的启动类,读取applicationContext.xml,负责Spring IoC容器在Web上下文中的初始化
  3. DispatcherServlet
    1. 前端处理器,接受的HTTP请求和转发请求的类
  4. CharacterEncodingFilter
    1. 字符集过滤器
  5. IntrospectorCleanupListener
    1. 防止Spring内存溢出监听器