@Component, @Service, @Controller, @Repository区别
Posted findbetterme
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@Component, @Service, @Controller, @Repository区别相关的知识,希望对你有一定的参考价值。
@Component
, @Service
, @Controller
, @Repository
是spring注解,注解后可以被spring框架所扫描并注入到spring容器来进行管理 @Component
是通用注解,其他三个注解是这个注解的拓展,并且具有了特定的功能 @Repository
注解在持久层中,具有将数据库操作抛出的原生异常翻译转化为spring的持久层异常的功能。 @Controller
层是spring-mvc的注解,具有将请求进行转发,重定向的功能。 @Service
层是业务逻辑层注解,这个注解只是标注该类处于业务逻辑层。
用这些注解对应用进行分层之后,就能将请求处理,义务逻辑处理,数据库操作处理分离出来,为代码解耦,也方便了以后项目的维护和开发。
以上是关于@Component, @Service, @Controller, @Repository区别的主要内容,如果未能解决你的问题,请参考以下文章
Spring中的@Service与@Component [重复]
spring自动扫描的注解@Component @Controller @Service @Repository
Spring Framework:可以在没有@Configuration的情况下创建相同@Component的两个bean吗?
Spring中的@Component、@Repository和@Service注解有啥区别?