struts2和Guice整合
轻量级的东东。。做个Demo看看。
先建立一个service:
IHelloService.java
Java代码
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); }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里来实现 */ @Singleton public class HelloServiceImpl implements IHelloService { public String sayHello(String str) { return new StringBuilder("Hello " + str + " !").toString(); } }struts.objectFactory = guice #如果自已想实现Module接口,则下面注释请去掉 #guice.module=com.leo.module.MyModule struts.action.extension=
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; } }}<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <package name="default" extends="struts-default"> <action name="hello" name="code"><?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <package name="default" extends="struts-default"> <action name="hello"name="code"> <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/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>/*</url-pattern> </filter-mapping> <filter-mapping> <filter-name>struts</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app> <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/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>/*</url-pattern> </filter-mapping> <filter-mapping> <filter-name>struts</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>
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); } }