Spring Framework 基础(二)注解

@Autowired :自动装配bean
@Component : 声明被扫描的类,可自动注册为bean,免去在xml中配置。派生的注解有:

  • @Respository : 表示DAO类
  • @Service:表示Service类
  • @Controller:表示控制器

@Resource :作用和 @Autowired 类似
二者区别:
1. @Autowired是Spring的注释,@Resource是java自带的注释
2. @Autowired默认按类型装配,@Resource按名称装配。比如一个类有两个实现类,@Autowired就无法区分了,@Resource可以按名称区分。

猜你喜欢

转载自blog.csdn.net/raphero/article/details/83185324