<context:annotation-config>处理HTTP请求

时间:2015-05-26 11:35:40

标签: java xml spring

我正在Spring上构建一个Web应用程序。

我很困惑,是否应该在配置中使用 mvc:annotation-driven context:annotation-config 来扫描注释以处理HTTP请求?

2 个答案:

答案 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 的作用

  1. http://docs.spring.io/spring/docs/current/spring-framework-reference/html/mvc.html#mvc-config-enable
  2. http://docs.spring.io/spring/docs/current/spring-framework-reference/html/beans.html#beans-annotation-config