spring 中 Component和@Configuration分别是什么意思
发布网友
发布时间:2022-04-23 19:13
我来回答
共2个回答
热心网友
时间:2023-10-14 10:26
Spring 注解@Component,@Service,@Controller,@Repository
Spring 2.5 中除了提供 @Component 注释外,还定义了几个拥有特殊语义的注释,它们分别是:@Repository、@Service 和 @Controller。在目前的 Spring 版本中,这 3 个注释和 @Component 是等效的,但是从注释类的命名上,很容易看出这 3 个注释分别和持久层、业务层和控制层(Web 层)相对应。虽然目前这 3 个注释和 @Component 相比没有什么新意,但 Spring 将在以后的版本中为它们添加特殊的功能。所以,如果 Web 应用程序采用了经典的三层分层结构的话,最好在持久层、业务层和控制层分别采用 @Repository、@Service 和 @Controller 对分层中的类进行注释,而用 @Component 对那些比较中立的类进行注释。
热心网友
时间:2023-10-14 10:26
Component 用于所标注类加载 Spring 环境需要搭配 component-scan 使用
Configuration Spring 3.X 提供注解用于取代 XML 配置 Spring