Spring_注入方式简析.doc

上传人:桔**** 文档编号:558535208 上传时间:2023-03-07 格式:DOC 页数:4 大小:34KB
返回 下载 相关 举报
Spring_注入方式简析.doc_第1页
第1页 / 共4页
Spring_注入方式简析.doc_第2页
第2页 / 共4页
Spring_注入方式简析.doc_第3页
第3页 / 共4页
Spring_注入方式简析.doc_第4页
第4页 / 共4页
亲,该文档总共4页,全部预览完了,如果喜欢就下载吧!
资源描述

《Spring_注入方式简析.doc》由会员分享,可在线阅读,更多相关《Spring_注入方式简析.doc(4页珍藏版)》请在金锄头文库上搜索。

1、一 setter方法注入配置文件如下:!- setter injection using the nested element -action实现类中代码:private IHelloService helloservice;private String name ;public void sayHello()helloservice.sayHello();System.out.println(this.name);public void setHelloservice(IHelloService helloservice) this.helloservice = helloservice;p

2、ublic void setName(String name) this.name = name;这里的name和helloservice都采用属性的setter方法注入。即类中设置一个全局属性,并对属性有setter方法,以供容器注入。二 构造器注入spring也支持构造器注入,也即有些资料中的构造子或者构造函数注入。先看配置文件:!-action实现类中代码:private HelloServiceImpl helloservice;private String name ;public SpringConstructorHelloAction(HelloServiceImpl hello

3、service,String name)this.helloservice = helloservice;this.name = name ;Overridepublic void sayHello() helloservice.sayHello();System.out.println(this.name);同样设置2个属性,然后在构造函数中注入。三静态工厂注入配置文件如下:action实现类:private HelloServiceImpl helloservice;private String name = null;private SpringFactoryHelloAction(St

4、ring name ,HelloServiceImpl helloservice)this.helloservice = helloservice ;this.name = name ;public static SpringFactoryHelloAction createInstance(String name ,HelloServiceImpl helloservice) SpringFactoryHelloAction fha = new SpringFactoryHelloAction (name,helloservice);/ some other operationsreturn

5、 fha;Overridepublic void sayHello() helloservice.sayHello();System.out.println(this.name);四 无配置文件注入(自动注入)上面三种方法都需要编写配置文件,在spring2.5中还提供了不编写配置文件的ioc实现。需要注意的是,无配置文件指bean之间依赖,不基于配置文件,而不是指没有spring配置文件。配置文件如下:可见上面只是设置了helloService和helloAction两个bean,并没有设置helloAction对helloService的依赖。另外是必须的,有此才支持自动注入。action

6、实现类:/* 属性自动装载*/*Autowiredprivate HelloService helloservice;Overridepublic void sayHello() helloservice.sayHello();。上面代码很简单,在属性上加上 Autowired注释,spring会自动注入HelloService 。同样也支持构造器和setteer方法的注入,如下:构造器自动注入:/* 还可以使用构造函数设置*/Autowiredpublic SpringAutowiredHelloAction(HelloServiceImpl helloservice)this.helloservice = helloservice;setter方法自动注入:/* 也可以使用set方法设置*/*Autowiredpublic void setHelloservice(HelloService helloservice) this.helloservice = helloservice;最后在spring的reference文档中有提到,如果不使用自动注入,尽量使用setter方法,一般通用的也是使用setter方法。而使用自动注入还是配置文件方式,如果jdk低于1.5或者spring不是2.5,就只能够使用配置文件方式了。其它的就看实际项目选择了。

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 生活休闲 > 科普知识

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号