Google Guice的Binder介面
三個bind方法
/**
* Creates a binding to a key.
*/
LinkedBindingBuilder bind(Key key);
/**
* Creates a binding to a type.
*/
AnnotatedBindingBuilder bind(TypeLiteral typeLiteral);
/**
* Creates a binding to a type.
*/
AnnotatedBindingBuilder bind(Class type);
繫結Scope的
/**
* Binds a scope to an annotation.
*/
void bindScope(Class annotationType, Scope scope);
幫定攔截器的
使用Module進行配置
/**
* Uses the given module to configure more bindings.
*/
void install(Module module);
連靜態方法也不放過):
/**
* Upon successful creation, the {@link Injector} will inject static fields
* and methods in the given classes.
*
* @param types for which static members will be injected
*/
void requestStaticInjection(Class... types);
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/13270562/viewspace-211688/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Google Guice 與 Noear Solon 的簡單對照GoGUI
- 【曹工雜談】Maven IOC容器的下半場:Google GuiceMavenGoGUI
- Elasticsearch 中的 GuiceElasticsearchGUI
- Guice 示例GUI
- Guice指南-用Guice實現依賴注入GUI依賴注入
- Guice學習心得GUI
- Guice與DWR整合GUI
- 初次認識GuiceGUI
- Binder總結篇2-Binder使用
- Binder總結篇1-Binder原理
- Binder學習(二)Binder機制解析
- Guice 依賴繫結GUI
- Guice指南-與 JNDI 整合GUI
- 例項認識GuiceGUI
- 對 Guice Interceptor 的一點 自己 的看法GUI
- Binder in JavaJava
- 自己對Binder的理解
- 祝賀Guice拿了Jolt AwardGUI
- Guice指南-手工依賴注入GUI依賴注入
- Guice指南-入門認識GUI
- Binder機制分析(1)——Binder結構簡介
- Binder機制
- c++ binderC++
- Binder機制分析(2)——從MediaService中看Binder的實現和使用(1)
- Binder機制分析(2)——從MediaService中看Binder的實現和使用(2)
- 為什麼選擇Guice框架GUI框架
- 轉享: 在Scala中使用GuiceGUI
- How does Guice compare to Spring ?GUISpring
- Guice,叫我怎能不愛你?GUI
- Guice指南-簡單工廠模式GUI模式
- 對AIDL和Binder的理解AI
- Android的IPC機制BinderAndroid
- Android Binder之旅Android
- Binder Java層分析Java
- android binder ipcAndroid
- 代理模式與Binder模式
- binder c++ 類C++
- 【翻譯】 Guice 動機——依賴注入的動機GUI依賴注入