IT民工窝棚qbq.blog.chinaunix.net
qbq
全部博文(708)
国产(1)
欧美(1)
SEO(1)
CSS3(5)
TestNG(4)
HTML5(2)
iBatis(3)
URLRewrite(1)
WebService(1)
WebServer(12)
PHP(8)
OGNL(1)
AS2(2)
Multimedia(0)
Flex AS3(29)
面试(9)
Commet(1)
Ivy(2)
Bat(8)
Maven(18)
CSS(7)
Ext(9)
Spring问题集(4)
Word(1)
JFreeChart(2)
Groovy on Grails(14)
Python(1)
Portlet(3)
amCharts(4)
CSharp.NET(3)
Tools(1)
S2Dao(8)
HSQL(9)
taglib(28)
Source Safe(3)
JSTL(6)
EL(2)
Seasar-SAStruts(3)
Prototype(0)
JQuery(3)
DWR(7)
AJAX(14)
Guice(13)
Digit(2)
Notebook(4)
Log4J(8)
Servlet(2)
JSP(4)
Eclipse(12)
VB.NET(3)
DotNet(3)
JavaScript(63)
Thinking In Soft(10)
Framework(11)
English(0)
Struts2(14)
Struts(38)
Hibernate(10)
Spring(30)
HTML(14)
Web(5)
MYSQL(9)
SQLSERVER(1)
ORACLE(2)
SQL(3)
数据库(0)
DATABASE(0)
Windows(8)
JAVA(67)
Software(1)
Hardware(3)
OpenSource(2)
Microsoft(0)
Excel(4)
DIY(5)
Linux(4)
分类: Java
2008-10-15 11:50:29
Guice可真轻啊,所需的3个Jar包才不到600k。但缺点就是必须JDK1.5以上,像我们公司有几十个大大小小的Java项目,没有一个是1.5的,有点感慨啊。废话少说 先建立一个service: IHelloService.javaJava代码 package com.leo.service; import com.google.inject.ImplementedBy; import com.leo.service.impl.HelloServiceImpl; /* * 采用annotation进行接口与实现类之间的绑定 * 注意:接口与实现类之间绑定是必须的,如果只是单独一个类,没有接口, * 那么Guice会隐式的自动帮你注入。并且接口此是不应该声明注入域范围的, * 应该在其实现地方声明 * */ @ImplementedBy(HelloServiceImpl.class) public interface IHelloService { public String sayHello(String str); } package com.leo.service;import com.google.inject.ImplementedBy;import com.leo.service.impl.HelloServiceImpl;/* * 采用annotation进行接口与实现类之间的绑定 * 注意:接口与实现类之间绑定是必须的,如果只是单独一个类,没有接口, * 那么Guice会隐式的自动帮你注入。并且接口此是不应该声明注入域范围的, * 应该在其实现地方声明 * */@ImplementedBy(HelloServiceImpl.class)public interface IHelloService { public String sayHello(String str);} 再来一个简单的实现: HelloServiceImpl.javaJava代码 package com.leo.service.impl; import com.google.inject.Singleton; import com.leo.service.IHelloService; /* * 这里如果默认不用annotation标注其作用域,或在自定义的module也不指定的话 * 默认的创建对象的方式是类似于Spring的prototype,在此处因为仅仅是一个stateless service * 我们用@Singleton来标注它,更多的作用域可看Guice文档 * * 注意:与标注@Singleton等效的工作也可以在自定义的module里来实现 */ @Singleton public class HelloServiceImpl implements IHelloService { public String sayHello(String str) { return new StringBuilder("Hello " + str + " !").toString(); } } package com.leo.service.impl;import com.google.inject.Singleton;import com.leo.service.IHelloService;/* * 这里如果默认不用annotation标注其作用域,或在自定义的module也不指定的话 * 默认的创建对象的方式是类似于Spring的prototype,在此处因为仅仅是一个stateless service * 我们用@Singleton来标注它,更多的作用域可看Guice文档 * * 注意:与标注@Singleton等效的工作也可以在自定义的module里来实现 */@Singletonpublic class HelloServiceImpl implements IHelloService { public String sayHello(String str) { return new StringBuilder("Hello " + str + " !").toString(); }} Struts2的配置相信大家都会了,这里需要注意的是Struts2的工厂已经变了,默认是Spring现在我们要改成Guice,请看: struts.propertiesJava代码 struts.objectFactory = guice #如果自已想实现Module接口,则下面注释请去掉 #guice.module=com.leo.module.MyModule struts.action.extension= struts.objectFactory = guice#如果自已想实现Module接口,则下面注释请去掉#guice.module=com.leo.module.MyModulestruts.action.extension= 再来看看调用代码,稍微比Spring简洁了些: HelloAction.javaJava代码 package com.leo.action; import com.google.inject.Inject; import com.leo.service.IHelloService; import com.opensymphony.xwork2.ActionSupport; public class HelloAction extends ActionSupport { private static final long serialVersionUID = -338076402728419581L; /* * 通过field字段进行注入,除此之外,还有construct, method注入均可 */ @Inject private IHelloService helloService; private String message; public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public String execute() { message = helloService.sayHello("leo"); return SUCCESS; } } package com.leo.action;import com.google.inject.Inject;import com.leo.service.IHelloService;import com.opensymphony.xwork2.ActionSupport;public class HelloAction extends ActionSupport { private static final long serialVersionUID = -338076402728419581L; /* * 通过field字段进行注入,除此之外,还有construct, method注入均可 */ @Inject private IHelloService helloService; private String message; public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public String execute() { message = helloService.sayHello("leo"); return SUCCESS; }} struts.xml配置也是非常简单: struts.xmlXml代码 <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" ""> <struts> <package name="default" extends="struts-default"> <action name="hello" class="com.leo.action.HelloAction"> <result>index.jsp</result> </action> </package> </struts> <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" ""><struts> <package name="default" extends="struts-default"> <action name="hello" class="com.leo.action.HelloAction"> <result>index.jsp</result> </action> </package></struts> 到这里,算是大功告成了,Guice文档在与Struts2整合部分例子有误,而且郁闷的是,竟然连Guice的Filter需要在web.xml配置都没有说,我把配好的web.xml弄出来给大家看看 web.xmlXml代码 <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.4" xmlns="" xmlns:xsi="" xsi:schemaLocation=" /web-app_2_4.xsd"> <filter> <filter-name>guice</filter-name> <filter-class> com.google.inject.servlet.GuiceFilter </filter-class> </filter> <filter> <filter-name>struts</filter-name> <filter-class> org.apache.struts2.dispatcher.FilterDispatcher </filter-class> </filter> <filter-mapping> <filter-name>guice</filter-name> <url-pattern>/* struts /* index.jsp xmlns:xsi="" xsi:schemaLocation=" /web-app_2_4.xsd"> guice com.google.inject.servlet.GuiceFilter struts org.apache.struts2.dispatcher.FilterDispatcher guice /* struts /* index.jsp 可以布署,运行了,输入 就可以看到结果了。 如果你觉得Annotation太麻烦,或不喜欢,也可以尝试自己实现Guice的Module,以下是一个简单的实现:MyModule.javaJava代码 package com.leo.module; import com.google.inject.Binder; import com.google.inject.Module; import com.google.inject.Scopes; import com.leo.service.IHelloService; import com.leo.service.impl.HelloServiceImpl; /* * 如果你觉得Annotation有种支离破碎的感觉,别急,Guice还为你提供一种统一 * 注入管理的自定义实现。在本例中,先前的IHelloService, HelloServiceImpl * 你现在可以完全将所有的Annotation去掉,然后实现Module接口的唯一一个方法 * 实现如下 */ public class MyModule implements Module { public void configure(Binder binder) { /* * 将接口IHelloService 与其实现HelloServiceImpl 绑定在一起 并且作用域为Scopes.SINGLETON * 在这里有多种配置方法,但因为是入门实例,不想说的太复杂。其中如果不配置作用域,默认就是类似于Spring * 的Scope="prototype" */ binder.bind(IHelloService.class).to(HelloServiceImpl.class).in( Scopes.SINGLETON); } } package com.leo.module;import com.google.inject.Binder;import com.google.inject.Module;import com.google.inject.Scopes;import com.leo.service.IHelloService;import com.leo.service.impl.HelloServiceImpl;/* * 如果你觉得Annotation有种支离破碎的感觉,别急,Guice还为你提供一种统一 * 注入管理的自定义实现。在本例中,先前的IHelloService, HelloServiceImpl * 你现在可以完全将所有的Annotation去掉,然后实现Module接口的唯一一个方法 * 实现如下 */public class MyModule implements Module { public void configure(Binder binder) { /* * 将接口IHelloService 与其实现HelloServiceImpl 绑定在一起 并且作用域为Scopes.SINGLETON * 在这里有多种配置方法,但因为是入门实例,不想说的太复杂。其中如果不配置作用域,默认就是类似于Spring * 的Scope="prototype" */ binder.bind(IHelloService.class).to(HelloServiceImpl.class).in( Scopes.SINGLETON); }} 运行效果完全一模一样,因此团队开发如果统一风格的话Guice确实能快速不少。但目前Guice仅仅只是一个IoC,远远没有Spring所涉及的那么广,但又正如Rod Johnson反复在其《J2EE without EJB》里强调:架构要永远 simplest, simplest 再 simplest,因此你觉得够用,就是最好的。 总的来说,开发,运行的速度似乎又快了不少,但Guice真的能不能扛起其所说的下一代IoC容器,我们拭目以待吧。
上一篇:用Ant来复制一下文件
下一篇:破解黑屏5个妙招
登录 注册