springboot注解与xml配置对应关系

context:component-scan                                 @ComponentScan
<context:component-scan base-package="com.bit"/>               @ComponentScan("com.bit")
<tx:annotation-driven />                                                    @EnableTransactionManagement
原文地址:https://www.cnblogs.com/SimpleCode/p/10318301.html