@configration和@component
时间: 2023-04-27 10:05:25 浏览: 145
@Configuration与@Component作为配置类的区别详解
@configuration和@Component都是Spring框架中的注解。
@Configuration注解用于标识一个类为配置类,其中包含了一些用@Bean注解标识的方法,这些方法返回的对象会被Spring容器管理,可以通过@Autowired注解进行注入。
@Component注解用于标识一个类为组件类,可以被Spring容器管理,可以通过@Autowired注解进行注入。常见的组件类有@Service、@Repository、@Controller等,它们都是@Component的派生注解。
阅读全文