网站大量收购闲置独家精品文档,联系QQ:2885784924

Spring注入方式简析.doc

  1. 1、本文档共4页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Spring注入方式简析

一 setter方法注入 配置文件如下: bean id=helloAction class=org.yoo.action.SpringSetterHelloAction !-- setter injection using the nested ref/ element -- property name=helloserviceref bean=helloService//property !--可以不设置类型 -- property name=name value=yoo/property /bean action实现类中代码: private IHelloService helloservice; private String name ; public void sayHello(){ helloservice.sayHello(); System.out.println(); } public void setHelloservice(IHelloService helloservice) { this.helloservice = helloservice; } public void setName(String name) { = name; } 这里的name和helloservice都采用属性的setter方法注入。即类中设置一个全局属性,并对属性有setter方法,以供容器注入。 二 构造器注入 spring也支持构造器注入,也即有些资料中的构造子或者构造函数注入。 先看配置文件: !--普通构造器注入-- bean id=helloAction class=org.yoo.action.ConstructorHelloAction !--type 必须为java.lang.String 因为是按类型匹配的,不是按顺序匹配-- constructor-arg type=java.lang.String value=yoo/ !-- 也可以使用index来匹配-- !--constructor-arg index=1 value=42/-- constructor-argref bean=helloService//constructor-arg /bean action实现类中代码: private HelloServiceImpl helloservice; private String name ; public SpringConstructorHelloAction(HelloServiceImpl helloservice,String name){ this.helloservice = helloservice; = name ; } @Override public void sayHello() { helloservice.sayHello(); System.out.println(); } 同样设置2个属性,然后在构造函数中注入。 三静态工厂注入 配置文件如下: !--静态工厂构造注入-- !--注意这里的class 带factory-method参数-- !--factory-method的值是FactoryHelloAction中的工厂方法名createInstance-- bean id=helloAction class=org.yoo.di.FactoryHelloAction factory-method=createInstance constructor-arg type=java.lang.String value=yoo/ constructor-argref bean=helloService//constructor-arg /bean action实现类: private HelloServiceImpl helloservice; private String name = null; private SpringFactoryHelloAction(String name ,HelloServiceImpl helloservice){ this.helloservice = helloservice ; = name ; } public static SpringFactoryHelloAction createInstance(String name ,HelloServiceImpl helloservice) { SpringFactoryHelloAction fha = new SpringFactoryHelloAction (name,helloservice); // some other operations retu

文档评论(0)

haihang2017 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档