Archive for April 3rd, 2005
各个版本的eclipse对jre版本的要求
Posted on April 3, 2005 - Filed Under Uncategorized
eclipse 2.1.3
You will need a 1.3 or 1.4 level Java runtime or Java development kit (JDK) installed on your machine in order to run Eclipse.
eclipse 3.0.2
You will need a 1.4.1 level or higher Java runtime or Java development kit (JDK) installed on your machine in order to run Eclipse.
eclipse 3.1M6
You will need a [...]
WebWork 2.2 Release Notes
Posted on April 3, 2005 - Filed Under Uncategorized
http://wiki.opensymphony.com/display/WW/WebWork+2.2
webwork 2.2 release??
还是Mar 25, 2005??
跳上一层才发现是
WebWork 2.2 - Upcoming
原来是用wiki先写release notes
Ajax support 现在什么都扯上ajax了
IDE plugins for Eclipse 应该就是说eclipsework吧,eclipsework做得不错
Role/security? 希望能提供跟acegi整合
IoC container changes? Spring? 从来不用webwork的ioc
Spring WebFlow integration? 最近好像热门起来了
JSR-168 Integration? 门户,呵呵
众多特性还没决定,汗
看来webwork会从appfuse吸取很多东西,不错
webwork官方论坛有人说四月底会有rc
http://forums.opensymphony.com/thread.jspa?threadID=1087&tstart=30
不过看了webwork jira,进度不乐观
用groovy来写webwork action
Posted on April 3, 2005 - Filed Under Uncategorized
groovy简洁的语法有很大的吸引力
想用groovy来写webwork的action么
hack一下xwork就行了
修改com.opensymphony.xwork.ObjectFactory.getClassInstance(String classname) 为
public Class getClassInstance(String className) throws ClassNotFoundException {
Class clazz;
// check className
if (className.matches(”.*\\.groovy”)) {
ClassLoader cl = Thread.currentThread().getContextClassLoader();
GroovyClassLoader groovyCl = new GroovyClassLoader(cl);
try {
[...]