public class StandardScriptEvaluator extends java.lang.Object implements ScriptEvaluator, 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(java.lang.ClassLoader classLoader)
Construct a new StandardScriptEvaluator.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
evaluate(ScriptSource script)
Evaluate the given script.
|
java.lang.Object |
evaluate(ScriptSource script,
java.util.Map<java.lang.String,java.lang.Object> arguments)
Evaluate the given script with the given arguments.
|
protected javax.script.ScriptEngine |
getScriptEngine(ScriptSource script)
Obtain the JSR-223 ScriptEngine to use for the given script.
|
void |
setBeanClassLoader(java.lang.ClassLoader classLoader)
Callback that supplies the bean
class loader to
a bean instance. |
void |
setLanguage(java.lang.String language)
Set the name of language meant for evaluation the scripts (e.g.
|
public StandardScriptEvaluator()
public StandardScriptEvaluator(java.lang.ClassLoader classLoader)
classLoader
- the class loader to use for script engine detectionpublic void setBeanClassLoader(java.lang.ClassLoader classLoader)
BeanClassLoaderAware
class loader
to
a bean instance.
Invoked after the population of normal bean properties but
before an initialization callback such as
InitializingBean's
InitializingBean.afterPropertiesSet()
method or a custom init-method.
setBeanClassLoader
in interface BeanClassLoaderAware
classLoader
- the owning class loader; may be null
in
which case a default ClassLoader
must be used, for example
the ClassLoader
obtained via
ClassUtils.getDefaultClassLoader()
public void setLanguage(java.lang.String language)
public java.lang.Object evaluate(ScriptSource script)
ScriptEvaluator
evaluate
in interface ScriptEvaluator
script
- the ScriptSource for the script to evaluatepublic java.lang.Object evaluate(ScriptSource script, java.util.Map<java.lang.String,java.lang.Object> arguments)
ScriptEvaluator
evaluate
in interface ScriptEvaluator
script
- the ScriptSource for the script to evaluatearguments
- the key-value pairs to expose to the script,
typically as script variables. May be null
.protected javax.script.ScriptEngine getScriptEngine(ScriptSource script)
script
- the script to evaluatenull
)