@Component, @Repository, @Service的区别

Posted shihuibei

tags:

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

注解含义
@Component 最普通的组件,可以被注入到spring容器进行管理
@Repository 作用于持久层
@Service 作用于业务逻辑层
@Controller 作用于表现层(spring-mvc的注解)

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

@Component, @Repository, @Service的区别

@Component, @Repository, @Service的区别

Spring 注释:@Component 有效,@Repository 无效

@Repository@Service@Controller 和 @Component

Spring注解@Component@Repository@Service@Controller区别

Spring - 为啥我们需要标记一个类@repository(或@Component以外的任何东西)[重复]