合作机构:阿里云 / 腾讯云 / 亚马逊云 / DreamHost / NameSilo / INWX / GODADDY / 百度统计
组件扫描是 Spring Boot 中默认的 Bean 加载方式,它会自动扫描指定包及其子包,寻找带有 @Component 及其衍生注解(如 @Service、@Repository、@Controller)的类,并将其注册为 Spring Bean。
// 示例1: 使用@Component注解声明一个Bean
@Component
public class MyComponent {
// Bean 的业务逻辑
}
// 示例2: 使用@Service注解声明一个服务Bean
@Service
public class MyService {
// 服务Bean的业务逻辑
}
TOP