浅谈spring注解之Autowired的required属性

我在使用spring框架进行开发过程中,会使用@Autowired注解进行对已有的bean进行注入。那么我们来简单分析下@Autowired的属性以及具体的使用。

1、Autowired注解

@Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Autowired {
    boolean required() default true;
}

可以发现Autowired注解只有一个required属性,并且默认为true,那么它具体有什么作用呢?我们先看下面的例子:

2、required属性的使用

注解不添加属性:

@Service
public class RequiredService {
	// 这个时候没有doRequiredTest这个bean
    @Autowired
    private DoRequiredTest doRequiredTest;
}

没有doRequiredTest这个bean,所以启动会报错:

Field doRequiredTest in com.test.requiredtest.RequiredService required a bean of type 'com.test.wgg.springboot.requiredtest.DoRequiredTest' that could not be found.

The injection point has the following annotations:
	- @org.springframework.beans.factory.annotation.Autowired(required=true)

添加required属性为false:

@Service
public class RequiredService {
	// 这个时候没有doRequiredTest这个bean
    @Autowired(required = false)
    private DoRequiredTest doRequiredTest;
}

再次启动,启动成功!

3、分析

required = true
这个表示:注入bean的时候该bean必须存在,不然就会注入失败!

required = false
这个表示:注入bean的时候如果bean存在,就注入成功,如果没有就忽略跳过,启动不会报错!但是不能直接使用,因为doRequiredTest为NULL!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值