博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Spring实战】—— 8 自动装配
阅读量:6238 次
发布时间:2019-06-22

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

本篇介绍一下自动装配的知识,Spring为了简化配置文件的编写。采用自动装配方式,自动的装载需要的bean。

  自动装配 有以下几种方式:

  1 byName 通过id的名字与属性的名字进行判断,要保证Bean实例中属性名字与该装配的id名字相同。

  2 byType 通过类型确定装配的bean,但是当存在多个类型符合的bean时,会报错。

  3 contructor 在构造注入时,使用该装配方式,效果如同byType。

  4 autodetect 自动装配,这个测试了,3.0.5版本不可用了,不知道是不是被移除了。

 

  下面简单的看下,自动装配的所需代码:

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 Instrumentalist(String song,int age,Instrument instrument){        this.song = song;        this.age = age;        this.instrument = instrument;    }    public void perform() throws PerformanceException {        System.out.println("Instrumentalist age:"+age);        System.out.print("Playing "+song+":");        instrument.play();    }}
public interface Instrument {    public void play();}
public class Saxophone implements Instrument {    public Saxophone(){}    public void play() {        System.out.println("TOOT TOOT TOOT");    }}
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();            }}

  采用byName方式的配置文件如下:

  采用byType的配置文件如下:

  如果有多个类型匹配的bean,则可以采用 primary 来设置主要装配的bean,默认情况下是false

本文转自博客园xingoo的博客,原文链接:,如需转载请自行联系原博主。
你可能感兴趣的文章
forfiles命令批量删除N天前文件
查看>>
顺序队列
查看>>
(NO.00005)iOS实现炸弹人游戏(三):从主场景类谈起
查看>>
git/github初级运用自如
查看>>
《Netty 权威指南》—— NIO类库简介
查看>>
Codeforces 452 A. Eevee
查看>>
小鱼儿CTO赵兴国:基于阿里云的互联网+视频会议系统实践
查看>>
基于smack的即时聊天系统之文件传输功能实现
查看>>
Boa服务器的移植
查看>>
Linux网络编程入门
查看>>
help
查看>>
我的友情链接
查看>>
GIT服务器配置及同步站点目录
查看>>
我的友情链接
查看>>
以太坊中的nonce是什么
查看>>
我的友情链接
查看>>
14-9-11 C/C++课程设计--图书馆管理系---<time.h>中时间数据类型的学习记录
查看>>
java环境配置--转载
查看>>
IPAD2 开启手势教程、未越狱
查看>>
WINTEL平板X86国内上市,神舟老总:ipad仅是玩具
查看>>