1、springmvc中的作用

当springmvc配置文件中使用了时,从3.1.x版本起,主要加载了HandlerMapping和HandlerAdapter两个接口的实现类,分别是RequestMappingHandlerMapping和RequestMappingHandlerAdapter

RequestMappingHandlerMapping:
实现类RequestMappingHandlerMapping,会处理@RequMapping中的内容,并且将这些请求放到请求注册表中

RequestMappingHandlerAdapter:(Adapter:适配器)
实现类RequestMappingHandlerAdapter属于处理主要的逻辑功能,用来处理请求,比如请求要调用哪个类的哪个方法,并且处理请求的参数、返回值。

添加这个标签注意命名空间的约束:

  1. 1、约束命名空间,用来区分内容
  2. xmlns:mvc="http://www.springframework.org/schema/mvc"
  3. 而不是
  4. xmlns:mvc="http://www.springframework.org/schema/context"
  5. 2、用来解析
  6. xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"