首页 > 代码库 > spring依赖注入
spring依赖注入
spring依赖注入:spring和注入相关的注解有:autoWired,resource,qualifier,service,controller,repository,component,
autoWired:自动从spring的上下文查找bean来注入。
resource:用来指定名称来注入。
service,controller,repository用来注入服务层,控制层,数据库层,spring扫描注解时,会标记这些需要生成bean。
上面的Autowired和Resource是用来修饰字段,构造函数,或者设置方法,并做注入的。而Service,Controller,Repository,Component则是用来修饰类,标记这些类要生成bean。
ApplicationContext appContext = new AnnotationConfigApplicationContext("cn.outofmemory.helloannotation"); CarService service = appContext.getBean(CarService.class); service.addCar("宝马");
在上面的main方法中首先我们初始化了appContext,他是AnnotationConfigApplicationContext,它的构造函数接受一个package的名称,来限定要扫描的package。
然后就可以通过appContext的getBean方法获得CarService的实例了。
<context:annotation-config /> <context:component-scan base-package="cn.outofmemory.helloannotation" > </context:component-scan>
spring依赖注入
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。