Spring 注解中 @Configuration 和 @Component 的区别总结为一句话就是: @Configuration 中所有带 @Bean 注解的方法都会被动态代理(cglib),因此调用该方法返回的都是同一个实例。而 @Conponent 修饰的类不会被代理
I am trying to implement \'scrollview\' effect in \'Tabbar\' which has \'TabItems\'. I found that the good example is from \'facebook\' open source \'TTCatlog\' project \'Tabs\' section.