注解说明
-
@Autowired : 通过类型,名字自动装配
如果Autowired不能唯一自动装配上属性,则需要搭配@Qualifier(value="xxx")使用 -
@Resource : 通过类型,名字自动装配
-
@Nullable :字段标记了这个注解,说明这个字段可以为null.
-
@Component :组件,放在类上,说明这个类被Spring管理了,就是bean!
-
与@Component组件有相同作用的三个注解
-
@Repository --- dao
-
@Service --- service
-
@Controller --- controller
-
@Value :相当于
<property name="name" value="kuangshen"/>
-
@Scope : @Scope("prototype")使用注解来表示范围