Spring中@Component注解,@Controller注解详解


在使用Spring的过程中,为了避免大量使用Bean注入的Xml配置文件,我们会采用Spring提供的自动扫描注入的方式,只需要添加几行自动注入的的配置,便可以完成

Service层,Controller层等等的注入配置.使用过程中,在Service层中的实现类头上加@Compopnet注解,在Controller类头加@Controller注解,便完成了配置。例如在

Controller中当我们调用某个Service时就不需要Set方法了,直接通过@Autowried 注解对Service对象进行注解即可:例如

在Controller中:

?
1
2
3
4
5
@Controller <br> @RequestMapping ( "/test" )
public class ExampleController {
      @Autowired 
      private ExampleService service;      
}

在Service中

?
1
2
3
4
5
@Component
public class ExampleServiceImpl Implements ExampleService {
      @Autowired 
      private ExampleDao exampleDao;      
}

Spring 中的XML配置:

?
1
2
3
<!-- 自动扫描service,controller组件 -->
<context:component-scan base- package = "com.example.service.*" >
<context:component-scan base- package = "com.example.controller.*" ></context:component-scan></context:component-scan>

  通常,在Bean为添加@Component注解的情况下,在启动服务时,服务会提前报出以下代码中这样的异常情况下,此时应该检查相应Bean是否正确添加@Component

注解,而在Controller层中未配置@Controller的情况,启动时服务可能不会爆出异常,但是你会发现页面请求中的URL地址是正确的,当时无论如何也访问不到Controller中相

对应的方法,这个时候就需要那么需要检查@Controller注解和@RequestMapping注解是否已经添加到Class上面了。

?
1
2
3
org.springframework.beans.factory.BeanCreationException:Error creating bean with name 'example'
 
No matching bean of type [com.example.ExampleService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: { @org .springframework.beans.factory.annotation.Autowired(required= true )}

下面就详细介绍下@Component,@Controller注解:

  • org.springframework.stereotype.Component (implements java.lang.annotation.Annotation)

      在自动服务,spring初始化的时候,spring会把所有添加@Component注解的类作为使用自动扫描注入配置路径下的备选对象,同时在初始化spring@Autowired

    注解相应的Bean时,@Autowired标签会自动寻找相应的备选对象完成对bean的注入工作。

    • org.springframework.stereotype.Controller (implements java.lang.annotation.Annotation)

        @Controller注解是一个特殊的Component,它允许了实现类可以通过扫描类配置路径的方式完成自动注入,通常@Controller是结合@RequestMapping注解一起使用的。

      结语:

         通过了解Spring的注解可以帮助我们在使用Spring开发过程中提高开发效率,同时也加强了我们对Spring的认识。在使用Spring开发的过程中,我个人更倾向于使用注解的方式,减少配置文件代码

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值