今天在查关于Struts2和Ajax方面的资料的时候,发现一个在Struts2中使用Groovy编写Action的插件.因为本身就对Groovy比较感兴趣,但因为最近的工作,没有多少时间来研究,看到这个插件,哈,正好可以在这段时间的应用中使用到,这样就可以在工作中应用Groovy啦.
这个插件是:s2ss(Struts 2 Scripting Support), 地址:http://code.google.com/p/s2ss/
下载地址:http://s2ss.googlecode.com/files/struts2-groovy-plugin-0.2.jar
将这个Jar包放到WEB-INF/lib下,之后修改struts.properties,添加一行:
struts.objectFactory=groovyObjectFactory
也可以修改struts.xml,添加下面一行:
<constant name="struts.objectFactory" value="groovyObjectFactory" />
个人习惯使用后面一种.
再将Groovy的包放到WEB-INF/lib下,我用的是groovy-all-1.0.jar.
这个插件所依赖的包有:
- Struts 2.0.x (struts2-api-2.0.x.jar, struts2-core-2.0.x.jar)
- Groovy 1.0 (groovy-all-1.0.jar)
- XWork 2.x (xwork-2.0.x.jar)
- Commons Loggings 1.0 (commons-logging-1.0.4.jar)
在struts.xml中配置Action,与正常的配置差不多,只不过class里用的是Groovy的类,而且需要加上Groovy的扩展名,如下:
<action name="groovy" class="com.puras.groovy.TestAction.groovy">
<result>/WEB-INF/pages/groovy/test_action.jsp</result>
</action>
拦截器与Action相似,
..
<interceptor name="groovyInterceptor" class="com.puras.groovy.Interceptor.groovy" />
..
<interceptor-ref name="groovyInterceptor" />
这里就只演示Action的了.呵
下面来编写TestAction.groovy:
package com.puras.groovy;
class TestAction {
def message;
def execute() {
message = "Hello world"
return "success"
}
def getMessage() {
return message
}
}
不用进行编译,直接将.groovy文件复制到WEB-INF/classes/com/puras/groovy/下就可以了.
类之间的调用等,与使用Java相同.
最后再编写一下用于显示的test_action.jsp就OK啦.代码如下:
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>
<s:property value="message"/>
<br />
<hr />
</body>
</html>
现在,启动你的WEB服务器,之后打开浏览器,输入地址:http://localhost:8080/your_webapp/groovy.action,就可以看到效果了.
下一步目标: