博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Spring实战】—— 5 设值注入
阅读量:6290 次
发布时间:2019-06-22

本文共 2378 字,大约阅读时间需要 7 分钟。

本篇主要讲解了Spring的最常用的功能——依赖注入。

注入的方式,是使用Getter Setter注入,平时大多的编程也都是使用这种方法。

  举个简单的例子,还是表演者。

  表演者有自己的属性,年龄或者表演的歌曲等等。还需要一些复杂的属性,比如乐器,每一种乐器会发出不同的声音。

  下面看一下表演者Performer

package com.spring.test.action1;public interface Performer {    void perform() throws PerformanceException;}

  我们自己定义一个钢琴演奏者,该表演者有年龄和歌曲,还有额外的一种乐器属性。

package com.spring.test.setter;import com.spring.test.action1.PerformanceException;import com.spring.test.action1.Performer;public class Instrumentalist implements Performer{    private String song;    private int age;    private Instrument instrument;    public int getAge() {        return age;    }    public void setAge(int age) {        this.age = age;    }    public String getSong() {        return song;    }    public void setSong(String song) {        this.song = song;    }    public Instrument getInstrument() {        return instrument;    }    public void setInstrument(Instrument instrument) {        this.instrument = instrument;    }    public Instrumentalist(){}    public void perform() throws PerformanceException {        System.out.println("Instrumentalist age:"+age);        System.out.print("Playing "+song+":");        instrument.play();    }}

  乐器的构造如下,依然使用接口方式:

package com.spring.test.setter;public interface Instrument {    public void play();}

  萨克斯实现该乐器接口

package com.spring.test.setter;public class Saxophone implements Instrument {    public Saxophone(){}    public void play() {        System.out.println("TOOT TOOT TOOT");    }}

  以上就是基本的类的构造了。

  下面看一下Spring的配置文件:

  在配置文件中,可以发现,设值注入时,使用name来指定注入哪个属性

  name的命名方式依据变量名称。

  1 首字母不区分大小写,其他部分与变量名称相同。

  2 注入的属性类型,可以是String , int , double , float等,当属性是String或int时,可以根据变量的类型自动转换。

  3 注入的是一个bean,则直接使用ref链接到另一个bean即可。

  下面是应用上下文的代码:

package com.spring.test.setter;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import com.spring.test.action1.PerformanceException;public class test {    public static void main(String[] args) throws PerformanceException {        ApplicationContext ctx = new ClassPathXmlApplicationContext("bean.xml");        Instrumentalist performer = (Instrumentalist)ctx.getBean("kenny");        performer.perform();    }}

  执行结果如下:

Instrumentalist age:25Playing Jingle Bells:TOOT TOOT TOOT

 

转载地址:http://cjkta.baihongyu.com/

你可能感兴趣的文章
html
查看>>
Xqk.Data数据框架开发指南:丰富的、灵活的查询方法(第三部分:SqlField)
查看>>
Java基本语法
查看>>
MapReduce对交易日志进行排序的Demo(MR的二次排序)
查看>>
online-compiler 在线编译器
查看>>
9. Palindrome Number - Easy
查看>>
使用vs2017编译live555
查看>>
洛谷——P1347 排序
查看>>
uboot2009 nandflash移植
查看>>
gulp-usemin 插件使用
查看>>
int数据类型的最大数
查看>>
OI养老专题02:约瑟夫问题求幸存者
查看>>
Python多线程
查看>>
写作环境搭建(git+github+markdown+jekyll)
查看>>
Codeforces Round #443 (Div. 2) C. Short Program
查看>>
flash builder4的序列号(阻止adobe更新)
查看>>
Android横竖屏切换的生命周期
查看>>
python之生成随机密码
查看>>
jekens介绍及服务搭建
查看>>
26. Remove Duplicates from Sorted Array*(快慢指针)
查看>>