概述
// 首先创建一个Groovy脚本管理器
package com.groovy;
import static com.utils.lang.StrEx.isEmpty;
import groovy.lang.GroovyShell;
import javax.script.Bindings;
import javax.script.Compilable;
import javax.script.CompiledScript;
import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
public class GroovyShellManager {
public static final GroovyShellManager inst = new GroovyShellManager();
final ClassLoader cl = GroovyShell.class.getClassLoader();
final ScriptEngineManager factory = new ScriptEngineManager(cl);
final ScriptEngine engine = factory.getEngineByName("groovy");
final Compilable compilable = (Compilable) engine;
// 获取到一个Bindings对象,在执行脚本之前,需要将所有用到的java方法注册到bindings中
public final Bindings createBindings() {
final Bindings binding = engine.createBindings();
return binding;
}
// 此方法的作用是将传入的脚本字符串编译成脚本对象
public final CompiledScript compile(String script) throws Exception {
if(isEmpty(script))
return null;
try {
return compilable.compile(script);
} catch (Exception e) {
throw e;
}
}
}
// 调用方式说明:
// 调用前的准备工作
final GroovyShellManager groovy = GroovyShellManager.inst;
final Bindings b = groovy.createBindings();
// b.put("key", value); key:脚本中该类的别名,value:任何Object对象都可放入
b.put("x9", x9Func);
b.put("dna", dnaFunc);
b.put("ctx", g51Ctx);
// 动态传入需要注册的方法
b.put(k1, v1);
b.put(k2, v2);
// 调用
CompiledScript script;
if (script == null || bindings == null)
return null;
Object obj = script.eval_r(bindings);// obj 即为返回的执行结果
动态脚本的编写,和java代码类似
def firstLevel = voucherDetails.get(0).getFirstLevelSubjectReci d();
def firstSubjectName = x9.onGetFieldValue(ctx, "SUBJECT", firstLevel, "stdname");
def firstSubjectCode = x9.onGetFieldValue(ctx, "SUBJECT", firstLevel, "stdcode");
return "[$firstSubjectCode]$firstSubjectName";
// 注:def是动态类型的意思,和js中的var类似
对于简单的返回值,不需要return:
x9.sumShowText(voucherDetails, "borrow");
package com.groovy;
import static com.utils.lang.StrEx.isEmpty;
import groovy.lang.GroovyShell;
import javax.script.Bindings;
import javax.script.Compilable;
import javax.script.CompiledScript;
import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
public class GroovyShellManager {
}
// 调用方式说明:
动态脚本的编写,和java代码类似
def firstLevel = voucherDetails.get(0).getFirstLevelSubjectReci
def firstSubjectName = x9.onGetFieldValue(ctx, "SUBJECT", firstLevel, "stdname");
def firstSubjectCode = x9.onGetFieldValue(ctx, "SUBJECT", firstLevel, "stdcode");
return "[$firstSubjectCode]$firstSubjectName";
// 注:def是动态类型的意思,和js中的var类似
对于简单的返回值,不需要return:
x9.sumShowText(voucherDetails, "borrow");
最后
以上就是昏睡电话为你收集整理的groovy之动态脚本的使用的全部内容,希望文章能够帮你解决groovy之动态脚本的使用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复