必须在有效 Spring Bean 中定义自动装配成员(@Component|@Service|…)
时间: 2024-11-16 13:20:23 浏览: 0
在Spring框架中,要实现自动装配(Automatic Dependency Injection, AOP),你需要在你的类上添加一些特定的注解,如@Component、@Service、@Repository等,这些都是Spring Beans的管理元数据,表明这个类应该由Spring容器管理并自动注入依赖。
例如:
```java
@Component
public class MyService {
private final MyRepository repository;
// 使用构造函数注入
@Autowired
public MyService(MyRepository repository) {
this.repository = repository;
}
// 或者使用setter注入
// @Autowired
// public void setRepository(MyRepository repository) {
// this.repository = repository;
// }
public void doSomething() {
repository.save(...);
}
}
```
在这个例子中,`MyRepository`是一个需要自动装配的依赖。当你声明`MyService`为`@Component`时,Spring会查找是否有实现了`MyRepository`接口的bean,并自动将它注入到`MyService`实例中。
阅读全文