1、springmvc中 的作用
当springmvc配置文件中使用了
RequestMappingHandlerMapping:
实现类RequestMappingHandlerMapping,会处理@RequMapping中的内容,并且将这些请求放到请求注册表中
RequestMappingHandlerAdapter:(Adapter:适配器)
实现类RequestMappingHandlerAdapter属于处理主要的逻辑功能,用来处理请求,比如请求要调用哪个类的哪个方法,并且处理请求的参数、返回值。
添加这个标签注意命名空间的约束:
1、约束命名空间,用来区分内容
是
xmlns:mvc="http://www.springframework.org/schema/mvc"
而不是
xmlns:mvc="http://www.springframework.org/schema/context"
2、用来解析
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"