我正在Spring上构建一个Web应用程序。
我很困惑,是否应该在配置中使用 mvc:annotation-driven 或 context:annotation-config 来扫描注释以处理HTTP请求?
答案 0 :(得分:1)
不,尽管关键字容易混淆,但annotation-config
无法处理HTTP请求。要处理HTTP请求,您只需要mvc:annotation-driven。
context:annotation-config
导致加载带有@Configuration
注释的Java配置类。请参阅documentation
mvc:annotation-driven
导致Spring汇总所有@RequestMapping
,@Controller
注释等。请参阅documentation
答案 1 :(得分:0)
您需要使用 mvc:annotation-driven 。
第一个链接将解释 mvc:annotation-driven 的作用,第二个链接将解释 context:annotation-config 的作用