<context:annotation-config/>
这个标签是隐式地向 Spring容器注册AutowiredAnnotationBeanPostProcessor、RequiredAnnotationBeanPostProcessor、CommonAnnotationBeanPostProcessor以及PersistenceAnnotationBeanPostProcessor这4个BeanPostProcessor,
也就是可以在在代码中使用例如@Autowire或者@Resource.
<context:component-scan base-package=""/>
这个标签跟上面的有一样的功能,并且能够扫描包里的注释,注册到容器.
mvc中配置,使用 REST 风格的资源url,如果需要处理静态资源则要同时加入一下两个配置:
<mvc:default-servlet-handler />
<mvc:annotation-driven />
本文详细介绍了Spring框架中的几个关键配置项,包括如何通过<context:annotation-config/>注册BeanPostProcessor,支持依赖注入和资源注入等特性。此外还介绍了<context:component-scan>如何帮助自动扫描和注册组件。最后提到了在MVC中配置REST风格URL所需的基本设置。
4102

被折叠的 条评论
为什么被折叠?



