@Autowired怎么导入
时间: 2023-06-18 19:05:10 浏览: 71
@Autowired是Spring框架中的注解,用于自动装配Bean对象,可以将Bean对象注入到需要使用它的地方。
要使用@Autowired注解,需要首先导入Spring框架的相关依赖,例如:
Maven:
```xml
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>5.2.0.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.2.0.RELEASE</version>
</dependency>
```
Gradle:
```
implementation 'org.springframework:spring-core:5.2.0.RELEASE'
implementation 'org.springframework:spring-context:5.2.0.RELEASE'
```
然后在需要使用@Autowired注解的类中,需要将该类声明为Spring容器中的一个Bean对象,可以使用@Component、@Service、@Repository等注解进行声明。
最后,在需要注入Bean对象的地方,使用@Autowired注解即可完成自动装配。
阅读全文