springmvc 报错:No mapping found for HTTP request with URI [/test] in DispatcherServlet w

springmvc 报错:No mapping found for HTTP request with URI [/test] in DispatcherServlet w_第1张图片

附上spingmvc的配置图

springmvc 报错:No mapping found for HTTP request with URI [/test] in DispatcherServlet w_第2张图片

配置没有问题,但是使用controller必须要加载Controller注解的驱动类
   

作用:主要就是为了S 是一种简写形式,完全可以手动配置替代这种简写形式,简写形式可以让初学都快速应用默认配置方案。配置一些messageconverter。即解决了@Controller注解的使用前提配置是对包进行扫描,实现注释驱动Bean定义,同时将bean自动注入容器中使用。即解决了@Controller标识的类的bean的注入和使用。
会自动注册RequestMappingHandlerMapping与RequestMappingHandlerAdapter两个Bean,这是Spring MVC为@Controller分发请求所必需的,并且提供了数据绑定支持,@NumberFormatannotation支持,@DateTimeFormat支持,@Valid支持读写XML的支持(JAXB)和读写JSON的支持(默认Jackson)等功能。
我们处理响应ajax请求时,就使用到了对json的支持。

springmvc 报错:No mapping found for HTTP request with URI [/test] in DispatcherServlet w_第3张图片

 

你可能感兴趣的:(Exception异常处理,SpringMVC)