java中的接口是类吗
239
2022-10-05
基于@Autowierd(自动装配)的使用说明
目录@Autowierd(自动装配)的使用一、介绍@Autowierd自动装配之前我们需要先了解何为装配?二、@Autowierd自动装配的使用三、使用注解@AutowOBZlHWWierd的"搭档"@Qualifier四、注意事项SpringBoot的Autowierd失败通常是以下几种可能:
@Autowierd(自动装配)的使用
@Autowired 是一个注释,它可以对类成员变量、方法及构造函数进行标注,让 spring 完成 bean 自动装配的工作。
一、介绍@Autowierd自动装配之前我们需要先了解何为装配?
首先我们来看最原生态的装配,以一个人分别养了猫和狗为例,我们先分别为猫和狗进行实例化:
<bean id="cat" class="com.spring05.pojo.Cat"/>
由于person类的属性中带有猫和狗,所以我们需要将猫和狗的实体类注入人的实体类中:
以上就是装配,所谓的属性注入
但是我们知道,如果是手动注入的属性的OBZlHWW话,一旦属性数量多的话会显得很繁琐,这时候自动装配的作用就体现出来了
二、@Autowierd自动装配的使用
第一步,使用@Autowiehttp://rd注释需要在配置文件中开启注解支持
但是相应的需要在配置文件中加入context约束:
xmlns:context="http://springframework.org/schema/context"
http://springframework.org/schema/context
http://springframework.org/schema/context/spring-context.xsd
接下来就是注解的使用了,@Autowierd注释的使用只需要在Person类中的属性上加上一个@Autowierd注释即可实现自动装配
@Autowired
private Cat cat;
@Autowired
private Dog dog;
自动装配完了之后在spring容器中注册person类时就不需要在对person类的bean添加属性注入,这边放入整个配置文件以供参考
xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:context="http://springframework.org/schema/context" xsi:schemaLocation="http://springframework.org/schema/context http://springframework.org/schema/context/spring-context.xsd http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans.xsd">
xmlns:xsi="http://w3.org/2001/XMLSchema-instance"
xmlns:context="http://springframework.org/schema/context"
xsi:schemaLocation="http://springframework.org/schema/context
http://springframework.org/schema/context/spring-context.xsd
http://springframework.org/schema/beans
http://springframework.org/schema/beans/spring-beans.xsd">
除了@Autowierd之外还需要介绍@Resource注释,@Resource注释与@Autowierd功能相同,@Resource甚至包括了@Autowierd
三、使用注解@Autowierd的"搭档"@Qualifier
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解@Autowired来完成时,我们可以使用@Qualifier(value= “xxx”)去配合@Autowired的使用,指定一个唯一的bean对象注入:
@Autowired
@Qualifier(value = "cat")
private Cat cat;
@Autowired
@Qualifier(value = "dog")
private Dog dog;
四、注意事项
1、使用Autowired我们可以省略set方法,但是使用注解的前提是装配的属性必须在IOC容器中存在,且符合名字byname
2、如果定义了@Autowired的required属性为false,说明这个对象可以为空,否则不允许为空:
@Autowired(required = false)
3、不仅仅只有通过注释可以自动装配,还可以通过ByName和ByType来自动装配:
SpringBoot的Autowierd失败
通常是以下几种可能:
1.没有加@Service注解,或者是这个bean没有放在标注了@Configuration这个注解的类下。
2.SpringBoot启动类没有开启扫描
@ComponentScan(value = {"com.bihang"})
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~