Annotation.autowired
时间: 2023-10-31 17:46:39 浏览: 85
annotation
`@Autowired` 是 Spring 框架中的一个注解,用于自动注入依赖对象。使用 `@Autowired` 注解后,Spring 会自动寻找符合要求的 Bean 对象,并将其注入到需要的地方,从而实现对象之间的解耦。通常需要在 Spring 配置文件中声明对应的 Bean,或者在代码中使用 `@Component` 等注解标注类,让 Spring 自动扫描并注册 Bean。`@Autowired` 注解还支持通过 `@Qualifier` 注解指定特定的 Bean 对象。
阅读全文