spring @Component ,@Repository、@Service 和 @Controller区别
程序员文章站
2022-07-10 13:39:52
...
spring 中除了提供 @Component 注释外,还定义了几个拥有特殊语义的注释,它们分别是:@Repository、@Service 和 @Controller。
在目前的 Spring 版本中,这 3 个注释和 @Component 是等效的,但是从注释类的命名上,很容易看出这 3 个注释分别和持久层、业务层和控制层(Web 层)相对应。
虽然目前这3 个注释和 @Component 相比没有什么新意,但 Spring 将在以后的版本中为它们添加特殊的功能。
所以,如果 Web 应用程序采用了经典的三层分层结构的话,最好在持久层、业务层和控制层分别采用上述注解对分层中的类进行注释。
@Service用于标注业务层组件
@Controller用于标注控制层组件(如struts中的action)
@Repository用于标注数据访问组件,即DAO组件
@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。
推荐阅读
-
Spring里面的@Controller和@RestController注解的区别
-
spring注解@Component、@Repository、@Service、@Controller的区别
-
解释@Component @Controller @Service @Repository
-
Spring-Context注解 @Repository、@Service、@Controller 和 @Component
-
spring @Component ,@Repository、@Service 和 @Controller区别
-
@Repository、@Service、@Controller 和 @Component
-
spring mvc常用注解@Component @Controller @Service @Repository
-
转载....@Repository、@Service、@Controller 和 @Component
-
@Repository、@Service、@Controller 和 @Component springbeandaoprototype
-
Spring @bean和@component注解区别