spring相关注解

spring相关注解:
使用之前需要<context:annotation-config/>在配置文件中启用

@Required
应用于类属性的set方法,并且要求该属性必须在xml容器里配置该参数的值

@Qualifier
当同一个类存在多个注入的bean在容器里时,可以和@Autowired一起使用来决定选择自动装配哪个bean,以此消除混乱
	用法:@Autowired
		  @Qualifier("student1")
		  private student stu;

  

posted @ 2019-07-03 10:31  黑魔法os  阅读(134)  评论(0编辑  收藏  举报