课程
/后端开发
/Java
/Spring入门篇
老师,您讲的例子中,为什么没注册CommonAnnotationBeanPostProcessor,测试jsr注解也能通过?
2016-03-25
源自:Spring入门篇 4-9
正在回答
context:component-scan这个标签包含了
说的也是啊,老师不是说:
支持这两种回调有个前提:CommonAnnotationBeanPostProcessor必须在Spring的ApplicationContext中注册。
这个注册是不是spring IOC 容器已经隐形地为我们注册了?还是这个类已经内置在Sping的上下文中了而无需注册了?
就是啊,为什么没有注册就能正常运行?是不是默认注册了?
使用Autowire注解
<bean class="org.springframework.beans.factory.annotation. AutowiredAnnotationBeanPostProcessor "/>
举报
为您带来IOC和AOP的基本概念及用法,为后续高级课程学习打下基础
1 回答CommonAnnotationBeanPostProcessor是Spring的ApplicationContext中注册的是自动注册的码?
1 回答注入与Bean注册的区别,联系
5 回答关于注册失败:expected single matching bean but found 2的问题
2 回答快捷注释是怎么弄得呀...
2 回答注册beans到ApplicationContext和xml配置文件和loc容器,这三者分别是什么,什么关系?