Tapestry IoC Configuration

时间:2014-06-10 21:08:19   收藏:0   阅读:353

Tapestry用来对服务进行配置的方式

对服务进行配置需要用到contribute,然后+serviceId。

看一下代码:

public static void arbitraryMethodName(MappedConfiguration<String,FileServicer> configuration)
{
    configuration.add("doc", new WordFileServicer());
    configuration.add("ppt", new PowerPointFileServicer());
}

其中可能最令人不解的就是MappedConfiguration了。

There are three different styles of configurations (with matching contributions):

有三种不同形式的configuration

 

 

 

 

 

Tapestry IoC Configuration,布布扣,bubuko.com

原文:http://www.cnblogs.com/voctrals/p/3779496.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!