Guice是什么
Guice(读作Juice)是Google开发的一套注入框架,目前最新版本是4.0Beta。注入的好处是将使用者与实现者、提供者分离,降低代码间的依赖,提高模块化程度。
Google的java开源产品,一般都具有良好的口碑,简洁而强悍,比如guava类库。 本文会只涉及Guice的DI基本功能,更主要是介绍利用Guice来组织平台的模块开发,在这点,Guice提供了非常好的解决方式,个人想通过这篇文章给需要模块化开发的同学推荐Guice的Module解决方案。
Guice的基本DI功能
在java开发方面,Spring是大部分系统采用的基本框架,我们利用Spring的IOC,DI等功能组织代码。 Spring的成功和优势无可置否,但是Google的Guice提供了更轻量级,更简洁高效的DI框架,并且更高程度抽象出模块的概念,为代码开发提供了强大的工具。 他的基本功能可以通过Guice wiki中了解,摘抄一些优点介绍:
IoC中Bean的注释:其实实现细节很是让人不得不佩服,因此,很多的其它框架也开发模仿;
通过“prodivers”和“modules”实现编程配置:这相对于其它语言的实现方式而言,显得更加的优美,至少认人觉得是一种比较实际可能的方法;
快速的“prototype”场景:可以通过CGLib快速的构建对象,这点让我很激动。Guice的出现让我们看到了其实prototype的bean和动态创建的bean其实也可以很容易的管理;
Modules:module可以将应用程序分割成几大块,或是将应用程序组件化,尤其是对于大型的应用程序;
Type safety:类型安全,它能够对构造函数、属性、方法(包含任意个参数的任意方法,而不仅仅是setter方法)进行注入;
快速启动;
简单、强大、快速的学习曲线;
Guice的思想在一定程度上积极的影响着Spring和WebBeans;
Guice的头Bob Lee(http://crazybob.org/)不愧为IoC大师;
Guice DI基本原理: 创建一个GuiceInjector(一种DI依赖注入的实现方式)。 Injector将会使用它的配置完的模块来定位所有请求的依赖,并以一种拓扑顺序来为我们创建出这些实例
如果在新项目中,也建议用Guice作为DI解决方案。
Guice的模块概念
Guice定义Module这个接口用来确定各个接口和他对应的实现的绑定。
通过bind("interface").to("implementation")的方式来完成接口实现的组装。目前很多的开源框架都采用Guice进行模块化开发,最典型的例子是ElasticSearch这个著名的分布式搜索引擎。 本文将大量通过ES的模块化开发实践来说明Guice是模块开发的利器。 除了ES外,Apache Shiro, Apache Shindig等也也采用了Guice,越来越多的开源实开始将Spring DI换成Guice。
ok,从头开始,所有的Guice模块都实现一个通用接口Module, 这个接口定义很简单,注释里也跟精确的解释了模块的定义和功能:
/**
* A module contributes configuration information, typically interface
* bindings, which will be used to create an {@link Injector}. A Guice-based
* application is ultimately composed of little more than a set of
* {@code Module}s and some bootstrapping code.
* <p/>
* <p>Your Module classes can use a more streamlined syntax by extending
* {@link AbstractModule} rather than implementing this interface directly.
* <p/>
* <p>In addition to the bindings configured via {@link #configure}, bindings
* will be created for all methods annotated with {@literal @}{@link Provides}.
* Use scope and binding annotations on these methods to configure the
* bindings.
*/
public interface Module {
/**
* Contributes bindings and other configurations for this module to {@code binder}.
* <p/>
* <p><strong>Do not invoke this method directly</strong> to install submodules. Instead use
* {@link Binder#install(Module)}, which ensures that {@link Provides provider methods} are
* discovered.
*/
void configure(Binder binder);
}
在configure方法里,我们将接口的具体实现通过模块绑定起来。 当这个模块被使用时,他定义的接口实现就会被调用。
同时Guide提供了Module接口的一个抽象类AbstractModule,提供了一些模块绑定的便利支持,同时推荐开发者的模块都继承这个抽象类。