ssh配置注解小记

1.配置Sping使用注解,Annotation 和 诠释及区别
区别: context:annotation-config 是用于激活那些已经在spring容器里注册过的bean(无论是通过xml的方式还是 通过package sanning的方式,不会自动扫描标注的注解将javabean注册到Sping 容器)上面的注解。
context:component-scan除了具有context:annotation-config的功能之外,context:component-scan还可以在指定的package下扫描以及注册javabean 。(还具有自动将带有@component,@service,@Repository等注解的对象注册到spring容器中的功能)
总结:使用context:component-scan 包含context:annotation-config的所有功能,同时context:annotation-config 和 context:component-scan同时存在的时候,前者会被忽略。
参考链接:(https://www.cnblogs.com/iuranus/archive/2012/07/19/2599084.html)
(https://www.cnblogs.com/leiOOlei/p/3713989.html)

你可能感兴趣的:(java,EE)