java注解@autowired_Spring 的@Autowired注解

# Spring 的`@Autowired`注解

> 原文: [https://javatutorial.net/autowired-annotation-in-spring](https://javatutorial.net/autowired-annotation-in-spring)

`@Autowired`注解是实现依赖注入的一种相对较新的样式。 它允许您将其他豆注入另一个所需的豆中。 与`@Required`的注解类似,`@Autowired`注解可用于在 setter 方法以及构造函数和属性上“自动装配” bean。

![java-featured-image](https://img.kancloud.cn/05/3e/053ee0bb59842d92359246c98f815e0c_780x330.jpg)

## setter 方法上的`@Autowired`

请注意,在 setter 方法上使用`@Autowired`注解时,它会自动摆脱 XML 配置文件中的``元素。 相反,当 Spring 发现使用`@Autowired`注释的 setter 方法时,它将对该特定方法执行按类型“自动装配”。

让我们看看`@Autowired`在实践中。 更具体地说,在设置方法上使用`@Autowired`。

### `ExampleService.java`

```java

public class ExampleService {

private Employee employee;

@Autowired

public void setEmployee(Employee emp) {

// setting the employee

employee = emp;

}

}

```

### 分解

上面的示例中没有什么花哨的。 我们只有一个名为`ExampleService`的服务类,该类具有一个`Employee`类型的实例变量,并且有一个名为`setEmployee(Employee emp)`的设置方法,该方法仅用于设置雇员为参数给出的任何东西。

感谢`@Autowired`注解,在实例化`ExampleService`时,将`Employee`的实例作为该方法的参数注入。

## 构造函数上的`@Autowired`注释

```java

public class ExampleService {

private Employee employee;

@Autowired

public ExampleService(Employee employee) {

this.employee = employee;

}

@Autowired

public void setEmployee(Employee emp) {

// setting the employee

employee = emp;

}

}

```

再次感谢`@Autowired`注释,当实例化`ExampleService`时,将`Employee`的实例作为构造函数的参数注入。

## 属性上的`@Autowired`注释

自动装配属性节省了我们的时间和代码行。 怎么样? 好吧,当我们在属性上使用该注解时,这些属性不再需要 getter 和 setter。 酷吧?

```java

public class ExampleService {

@Autowired

private Employee employee;

@Autowired

public ExampleService(Employee employee) {

this.employee = employee;

}

@Autowired

public void setEmployee(Employee emp) {

// setting the employee

employee = emp;

}

}

```

在上面的代码片段中,我们自动连接了名为`employee`的属性。 因此,它不再需要 setter 和 getter 方法。`employee`在创建`ExampleService`时被 Spring 注入。

## 可选依赖项

`@Autowired`也可以是可选的。 像这样:

```java

public class ExampleService {

@Autowired(required = false)

private Employee employee;

@Autowired

public ExampleService(Employee employee) {

this.employee = employee;

}

@Autowired

public void setEmployee(Employee emp) {

// setting the employee

employee = emp;

}

}

```

`required = false`使其不是必需的依赖项。

我们需要可选依赖项的原因是因为 Spring 希望在构造依赖项 bean 时`@Autowired`的依赖项可用。 否则,将引发错误。 由于`required = false`,我们可以解决此问题。

## 总结

通过使用`@Autowired`注解,我们节省了几行代码,还节省了一些时间,因为我们不需要指定属性和构造函数参数。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值