Spring注解注入

Posted

tags:

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

    spring注入方式-----注解注入

(1)操作:

首先在要注入的类前面加上:

@Component(与后面三个是等价的)@Repository(持久层),@Service业务层,@Controller和控制层

应为不能自动识别某个类是否是持久层,业务层还是控制层,理论上是可以混用的,但是对于编写程序来说不推荐。

然后在xml文件中配置:

<!-- 使用 annotation -->

<context:annotation-config />

<!-- 使用 annotation 自动注册bean,并检查@Controller, @Service, @Repository注解已被注入 -->

<context:component-scan  base-package="cn.edu.ujn.ps" />

注:base-package:是注明改注解注入自动扫描哪个包下。

最后在函数中调用:

ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");

IElasticSearchDao elasticSearch=(IElasticSearchDao)context.getBean("elasticSearchDaoImpl");

注:getbean()函数里面的值应该是添加注解的类名首字母小写。

以上是关于Spring注解注入的主要内容,如果未能解决你的问题,请参考以下文章

使用注解,spring中无法注入bean?

spring不用注入注解怎么接口所有实现类bean

Spring之IOC-注解方式

Bean和注入Bean的几种常用注解和区别

Spring依赖注入:注解注入总结

关于spring mvc 3.0注解,注入失败的问题