spring相关注解

时间:2021-10-21 20:43:20
spring相关注解:
使用之前需要<context:annotation-config/>在配置文件中启用 @Required
应用于类属性的set方法,并且要求该属性必须在xml容器里配置该参数的值 @Qualifier
当同一个类存在多个注入的bean在容器里时,可以和@Autowired一起使用来决定选择自动装配哪个bean,以此消除混乱
用法:@Autowired
@Qualifier("student1")
private student stu;