Springboot @Autowired用法

Posted littlespring

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot @Autowired用法相关的知识,希望对你有一定的参考价值。

2.  @Autowired

作用:@Autowired表示被修饰的类需要注入对象,spring会扫描所有被@Autowired标注的类,然后根据 类型在ioc容器中找到匹配的类注入。

技术图片
@Autowired  
public class Car(Brand benz)  
  
   this.brand=benz;  
  
View Code

 

以上是关于Springboot @Autowired用法的主要内容,如果未能解决你的问题,请参考以下文章

Springboot??????Kfka

@Autowired用法与原理解析

springboot Autowired BeanNotOfRequiredTypeException

@Autowired的用法

SpringBoot@Autowired注入静态成员变量报空指针异常

SpringBoot常用注解:@Resource/@Component与@Autowired的使用