下面我将osworkflow的各个部分职能的小测试写一下,以便比较全面的掌握osworkflow。
Beanshell部分:
要把bsh的jar 包放到classpath中。
如做个简单的测试:
public class SimpleBeanShell {
private int count;
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
}
过程定义这样写一下: