@Component, @Controller, @Repository, @Service 有何区别?

Posted programb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@Component, @Controller, @Repository, @Service 有何区别?相关的知识,希望对你有一定的参考价值。

@Component :这将 java 类标记为 bean。它是任何 Spring 管理组件的通

用构造型。spring 的组件扫描机制现在可以将其拾取并将其拉入应用程序环境

中。@Controller :这将一个类标记为 Spring Web MVC 控制器。标有它的

Bean 会自动导入到 IoC 容器中。@Service :此注解是组件注解的特化。它不

会对 @Component 注解提供任何其他行为。您可以在服务层类中使用

@Service 而不是 @Component,因为它以更好的方式指定了意图。

@Repository :这个注解是具有类似用途和功能的 @Component 注解的特

化。它为 DAO 提供了额外的好处。它将 DAO 导入 IoC 容器,并使未经检查

的异常有资格转换为 Spring DataAccessException。

以上是关于@Component, @Controller, @Repository, @Service 有何区别?的主要内容,如果未能解决你的问题,请参考以下文章

@Component, @Service, @Controller, @Repository区别

小白面试题:@Component@Controller@Service@Respository的区别

Spring注解@Component@Repository@Service@Controller的相关知识

Spring注解 @Component@Repository@Service@Controller @Resource@Autowired@Qualifier 解析

Spring中@Component注解,@Controller注解详解(网摘)

@Controller,@Service,@Repository,@Component你搞懂了吗?