我正在从 Spring 2.5 迁移到 Spring 3。
他们已经介绍了<mvc:annotation-driven />
哪些会做一些黑魔法。这应该只在 servlet 配置文件中声明。
在 Spring 2.5 中,我刚刚使用了在<context:annotation-config />
和调度程序 servlet 配置 XML<context:component-scan base='...'/>
中声明的标签,application-context.xml
并带有适当的基本包进行扫描。
mvc:annotation-driven
所以我想知道 servlet 配置中的和标签之间有什么区别,context:annotation-config
我可以在 Spring 3 配置文件中消除什么?