public class StandardScriptEvaluator extends Object implements ScriptEvaluator, org.springframework.beans.factory.BeanClassLoaderAware
javax.script (JSR-223) based implementation of Spring's ScriptEvaluator
strategy interface.ScriptEngine.eval(String)| Constructor and Description |
|---|
StandardScriptEvaluator()
Construct a new StandardScriptEvaluator.
|
StandardScriptEvaluator(ClassLoader classLoader)
Construct a new StandardScriptEvaluator.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
evaluate(ScriptSource script)
Evaluate the given script.
|
Object |
evaluate(ScriptSource script,
Map<String,Object> arguments)
Evaluate the given script with the given arguments.
|
protected ScriptEngine |
getScriptEngine(ScriptSource script)
Obtain the JSR-223 ScriptEngine to use for the given script.
|
void |
setBeanClassLoader(ClassLoader classLoader) |
void |
setLanguage(String language)
Set the name of language meant for evaluation the scripts (e.g.
|
public StandardScriptEvaluator()
public StandardScriptEvaluator(ClassLoader classLoader)
classLoader - the class loader to use for script engine detectionpublic void setBeanClassLoader(ClassLoader classLoader)
setBeanClassLoader in interface org.springframework.beans.factory.BeanClassLoaderAwarepublic void setLanguage(String language)
public Object evaluate(ScriptSource script)
ScriptEvaluatorevaluate in interface ScriptEvaluatorscript - the ScriptSource for the script to evaluatepublic Object evaluate(ScriptSource script, Map<String,Object> arguments)
ScriptEvaluatorevaluate in interface ScriptEvaluatorscript - the ScriptSource for the script to evaluatearguments - the key-value pairs to expose to the script,
typically as script variables. May be null.protected ScriptEngine getScriptEngine(ScriptSource script)
script - the script to evaluatenull)