Springboot @Autowired用法
Posted littlespring
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot @Autowired用法相关的知识,希望对你有一定的参考价值。
2. @Autowired
作用:@Autowired表示被修饰的类需要注入对象,spring会扫描所有被@Autowired标注的类,然后根据 类型在ioc容器中找到匹配的类注入。
@Autowired public class Car(Brand benz) this.brand=benz;
以上是关于Springboot @Autowired用法的主要内容,如果未能解决你的问题,请参考以下文章
springboot Autowired BeanNotOfRequiredTypeException