springboot @component注解
时间: 2023-04-25 15:00:21 浏览: 120
springboot @ComponentScan注解原理解析
Spring Boot中的@Component注解是一个通用的注解,用于标识一个类作为Spring容器中的一个组件。它可以被用于任何类,包括Controller、Service、Repository等。使用@Component注解的类会被自动扫描并注册到Spring容器中,可以通过@Autowired注解进行依赖注入。此外,@Component注解还有一些衍生注解,如@Service、@Repository、@Controller等,它们分别用于标识不同类型的组件,但本质上都是@Component的变体。
阅读全文