我正在从Spring 2.5迁移到Spring 3。
他们介绍了<mvc:annotation-driven />
一些黑魔法。预期仅在servlet配置文件中声明。
在Spring 2.5中,我刚刚使用,<context:annotation-config />
并且<context:component-scan base='...'/>
在application-context.xml
servlet分配器XML配置文件中声明了标记,并使用了要扫描的基本包。
因此,我想知道servlet config中的和标记之间有什么区别,mvc:annotation-driven
并且context:annotation-config
在Spring 3配置文件中可以消除什么?