PicoContainer-Two minute tutorial
2008-02-23 10:11:32来源:互联网 阅读 ()
Two minute tutorial
两分钟教程
Authors: Jon Tirsen
This very short tutorial should get you up to speed with PicoContainer in 2 minutes. It does not go into why you should do it, read the Five minute introduction for that.
这是一个非常简短的是你能够快速掌握微容器的两分钟教程.如果它仍然不能是你确定为什么要使用微容器,你可以继续阅读5分钟介绍.
Download and install
Download the jar file and include it in your classpath.
Write two simple components
两个简单的组件
public class Boy { public void kiss(Object kisser) { System.out.println("I was kissed by " kisser); } }
public class Girl { Boy boy; public Girl(Boy boy) { this.boy = boy; } public void kissSomeone() { boy.kiss(this); } }
Assemble components
装配组件
MutablePicoContainer pico = new DefaultPicoContainer();
pico.reGISterComponentImplementation(Boy.class);
pico.registerComponentImplementation(Girl.class);
Instantiate and use component
初始化并使用组件
Girl girl = (Girl) pico.getComponentInstance(Girl.class); girl.kissSomeone();
getComponentInstance方法将会查找Girl类和匹配Boy类并创建它然后传入构造方法初始化一个Girl实例.先创建的Boy然后是Girl.
PicoContainer API
The Girl does not reach out to find herself a Boy but instead is provided one by the container. This is called the Hollywood Principle or "Don't call us we'll call you".
Girl类没有自己去调用这个Boy类而是通过容器提供的,这就是著名的好莱坞规则“不要找我,我会找你的“.
Introduce an interface for the dependency
给从属类一个接口
Change the Boy class to implement a Kissable interface and change the Girl class to depend on Kissable instead.
将Boy类实现一个Kissable接口并且改变Girl类去引用一个Kissable对象.
public interface Kissable {
void kiss(Object kisser);
}
public class Boy implements Kissable { public void kiss(Object kisser) { System.out.println("I was kissed by " kisser); } }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash