Consistent support for CompilationCustomizers as well as custom CompilerConfiguration
Issue: SPR-14585
(cherry picked from commit 6a0d9d3)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2015 the original author or authors.
|
||||
* Copyright 2002-2016 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -22,6 +22,8 @@ import java.util.Map;
|
||||
import groovy.lang.Binding;
|
||||
import groovy.lang.GroovyRuntimeException;
|
||||
import groovy.lang.GroovyShell;
|
||||
import org.codehaus.groovy.control.CompilerConfiguration;
|
||||
import org.codehaus.groovy.control.customizers.CompilationCustomizer;
|
||||
|
||||
import org.springframework.beans.factory.BeanClassLoaderAware;
|
||||
import org.springframework.scripting.ScriptCompilationException;
|
||||
@@ -40,6 +42,8 @@ public class GroovyScriptEvaluator implements ScriptEvaluator, BeanClassLoaderAw
|
||||
|
||||
private ClassLoader classLoader;
|
||||
|
||||
private CompilerConfiguration compilerConfiguration = new CompilerConfiguration();
|
||||
|
||||
|
||||
/**
|
||||
* Construct a new GroovyScriptEvaluator.
|
||||
@@ -56,6 +60,35 @@ public class GroovyScriptEvaluator implements ScriptEvaluator, BeanClassLoaderAw
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set a custom compiler configuration for this evaluator.
|
||||
* @since 4.3.3
|
||||
* @see #setCompilationCustomizers
|
||||
*/
|
||||
public void setCompilerConfiguration(CompilerConfiguration compilerConfiguration) {
|
||||
this.compilerConfiguration =
|
||||
(compilerConfiguration != null ? compilerConfiguration : new CompilerConfiguration());
|
||||
}
|
||||
|
||||
/**
|
||||
* Return this evaluator's compiler configuration (never {@code null}).
|
||||
* @since 4.3.3
|
||||
* @see #setCompilerConfiguration
|
||||
*/
|
||||
public CompilerConfiguration getCompilerConfiguration() {
|
||||
return this.compilerConfiguration;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set one or more customizers to be applied to this evaluator's compiler configuration.
|
||||
* <p>Note that this modifies the shared compiler configuration held by this evaluator.
|
||||
* @since 4.3.3
|
||||
* @see #setCompilerConfiguration
|
||||
*/
|
||||
public void setCompilationCustomizers(CompilationCustomizer... compilationCustomizers) {
|
||||
this.compilerConfiguration.addCompilationCustomizers(compilationCustomizers);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setBeanClassLoader(ClassLoader classLoader) {
|
||||
this.classLoader = classLoader;
|
||||
@@ -69,7 +102,8 @@ public class GroovyScriptEvaluator implements ScriptEvaluator, BeanClassLoaderAw
|
||||
|
||||
@Override
|
||||
public Object evaluate(ScriptSource script, Map<String, Object> arguments) {
|
||||
GroovyShell groovyShell = new GroovyShell(this.classLoader, new Binding(arguments));
|
||||
GroovyShell groovyShell = new GroovyShell(
|
||||
this.classLoader, new Binding(arguments), this.compilerConfiguration);
|
||||
try {
|
||||
String filename = (script instanceof ResourceScriptSource ?
|
||||
((ResourceScriptSource) script).getResource().getFilename() : null);
|
||||
|
||||
@@ -17,12 +17,15 @@
|
||||
package org.springframework.scripting.groovy;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
|
||||
import groovy.lang.GroovyClassLoader;
|
||||
import groovy.lang.GroovyObject;
|
||||
import groovy.lang.MetaClass;
|
||||
import groovy.lang.Script;
|
||||
import org.codehaus.groovy.control.CompilationFailedException;
|
||||
import org.codehaus.groovy.control.CompilerConfiguration;
|
||||
import org.codehaus.groovy.control.customizers.CompilationCustomizer;
|
||||
|
||||
import org.springframework.beans.factory.BeanClassLoaderAware;
|
||||
import org.springframework.beans.factory.BeanFactory;
|
||||
@@ -33,6 +36,8 @@ import org.springframework.scripting.ScriptFactory;
|
||||
import org.springframework.scripting.ScriptSource;
|
||||
import org.springframework.util.Assert;
|
||||
import org.springframework.util.ClassUtils;
|
||||
import org.springframework.util.ObjectUtils;
|
||||
import org.springframework.util.ReflectionUtils;
|
||||
|
||||
/**
|
||||
* {@link org.springframework.scripting.ScriptFactory} implementation
|
||||
@@ -55,7 +60,9 @@ public class GroovyScriptFactory implements ScriptFactory, BeanFactoryAware, Bea
|
||||
|
||||
private final String scriptSourceLocator;
|
||||
|
||||
private final GroovyObjectCustomizer groovyObjectCustomizer;
|
||||
private GroovyObjectCustomizer groovyObjectCustomizer;
|
||||
|
||||
private CompilerConfiguration compilerConfiguration;
|
||||
|
||||
private GroovyClassLoader groovyClassLoader;
|
||||
|
||||
@@ -78,27 +85,62 @@ public class GroovyScriptFactory implements ScriptFactory, BeanFactoryAware, Bea
|
||||
* Interpreted by the post-processor that actually creates the script.
|
||||
*/
|
||||
public GroovyScriptFactory(String scriptSourceLocator) {
|
||||
this(scriptSourceLocator, null);
|
||||
Assert.hasText(scriptSourceLocator, "'scriptSourceLocator' must not be empty");
|
||||
this.scriptSourceLocator = scriptSourceLocator;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new GroovyScriptFactory for the given script source,
|
||||
* specifying a strategy interface that can create a custom MetaClass
|
||||
* to supply missing methods and otherwise change the behavior of the object.
|
||||
* <p>We don't need to specify script interfaces here, since
|
||||
* a Groovy script defines its Java interfaces itself.
|
||||
* @param scriptSourceLocator a locator that points to the source of the script.
|
||||
* Interpreted by the post-processor that actually creates the script.
|
||||
* @param groovyObjectCustomizer a customizer that can set a custom metaclass
|
||||
* or make other changes to the GroovyObject created by this factory
|
||||
* (may be {@code null})
|
||||
* @see GroovyObjectCustomizer#customize
|
||||
*/
|
||||
public GroovyScriptFactory(String scriptSourceLocator, GroovyObjectCustomizer groovyObjectCustomizer) {
|
||||
Assert.hasText(scriptSourceLocator, "'scriptSourceLocator' must not be empty");
|
||||
this.scriptSourceLocator = scriptSourceLocator;
|
||||
this(scriptSourceLocator);
|
||||
this.groovyObjectCustomizer = groovyObjectCustomizer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new GroovyScriptFactory for the given script source,
|
||||
* specifying a strategy interface that can create a custom MetaClass
|
||||
* to supply missing methods and otherwise change the behavior of the object.
|
||||
* @param scriptSourceLocator a locator that points to the source of the script.
|
||||
* Interpreted by the post-processor that actually creates the script.
|
||||
* @param compilerConfiguration a custom compiler configuration to be applied
|
||||
* to the GroovyClassLoader (may be {@code null})
|
||||
* @since 4.3.3
|
||||
* @see GroovyClassLoader#GroovyClassLoader(ClassLoader, CompilerConfiguration)
|
||||
*/
|
||||
public GroovyScriptFactory(String scriptSourceLocator, CompilerConfiguration compilerConfiguration) {
|
||||
this(scriptSourceLocator);
|
||||
this.compilerConfiguration = compilerConfiguration;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new GroovyScriptFactory for the given script source,
|
||||
* specifying a strategy interface that can customize Groovy's compilation
|
||||
* process within the underlying GroovyClassLoader.
|
||||
* @param scriptSourceLocator a locator that points to the source of the script.
|
||||
* Interpreted by the post-processor that actually creates the script.
|
||||
* @param compilationCustomizers one or more customizers to be applied to the
|
||||
* GroovyClassLoader compiler configuration
|
||||
* @since 4.3.3
|
||||
* @see CompilerConfiguration#addCompilationCustomizers
|
||||
* @see org.codehaus.groovy.control.customizers.ImportCustomizer
|
||||
*/
|
||||
public GroovyScriptFactory(String scriptSourceLocator, CompilationCustomizer... compilationCustomizers) {
|
||||
this(scriptSourceLocator);
|
||||
if (!ObjectUtils.isEmpty(compilationCustomizers)) {
|
||||
this.compilerConfiguration = new CompilerConfiguration();
|
||||
this.compilerConfiguration.addCompilationCustomizers(compilationCustomizers);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void setBeanFactory(BeanFactory beanFactory) {
|
||||
@@ -109,7 +151,7 @@ public class GroovyScriptFactory implements ScriptFactory, BeanFactoryAware, Bea
|
||||
|
||||
@Override
|
||||
public void setBeanClassLoader(ClassLoader classLoader) {
|
||||
this.groovyClassLoader = new GroovyClassLoader(classLoader);
|
||||
this.groovyClassLoader = buildGroovyClassLoader(classLoader);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -118,12 +160,22 @@ public class GroovyScriptFactory implements ScriptFactory, BeanFactoryAware, Bea
|
||||
public GroovyClassLoader getGroovyClassLoader() {
|
||||
synchronized (this.scriptClassMonitor) {
|
||||
if (this.groovyClassLoader == null) {
|
||||
this.groovyClassLoader = new GroovyClassLoader(ClassUtils.getDefaultClassLoader());
|
||||
this.groovyClassLoader = buildGroovyClassLoader(ClassUtils.getDefaultClassLoader());
|
||||
}
|
||||
return this.groovyClassLoader;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Build a {@link GroovyClassLoader} for the given {@code ClassLoader}.
|
||||
* @param classLoader the ClassLoader to build a GroovyClassLoader for
|
||||
* @since 4.3.3
|
||||
*/
|
||||
protected GroovyClassLoader buildGroovyClassLoader(ClassLoader classLoader) {
|
||||
return (this.compilerConfiguration != null ?
|
||||
new GroovyClassLoader(classLoader, this.compilerConfiguration) : new GroovyClassLoader(classLoader));
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public String getScriptSourceLocator() {
|
||||
|
||||
@@ -19,6 +19,7 @@ package org.springframework.scripting.groovy;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.codehaus.groovy.control.customizers.ImportCustomizer;
|
||||
import org.junit.Test;
|
||||
|
||||
import org.springframework.core.io.ClassPathResource;
|
||||
@@ -58,6 +59,26 @@ public class GroovyScriptEvaluatorTests {
|
||||
assertEquals(6, result);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGroovyScriptWithCompilerConfiguration() {
|
||||
GroovyScriptEvaluator evaluator = new GroovyScriptEvaluator();
|
||||
MyBytecodeProcessor processor = new MyBytecodeProcessor();
|
||||
evaluator.getCompilerConfiguration().setBytecodePostprocessor(processor);
|
||||
Object result = evaluator.evaluate(new StaticScriptSource("return 3 * 2"));
|
||||
assertEquals(6, result);
|
||||
assertTrue(processor.processed.contains("Script1"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGroovyScriptWithImportCustomizer() {
|
||||
GroovyScriptEvaluator evaluator = new GroovyScriptEvaluator();
|
||||
ImportCustomizer importCustomizer = new ImportCustomizer();
|
||||
importCustomizer.addStarImports("org.springframework.util");
|
||||
evaluator.setCompilationCustomizers(importCustomizer);
|
||||
Object result = evaluator.evaluate(new StaticScriptSource("return ResourceUtils.CLASSPATH_URL_PREFIX"));
|
||||
assertEquals("classpath:", result);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGroovyScriptFromStringUsingJsr223() {
|
||||
StandardScriptEvaluator evaluator = new StandardScriptEvaluator();
|
||||
|
||||
@@ -477,6 +477,8 @@ public class GroovyScriptFactoryTests {
|
||||
ApplicationContext ctx = new ClassPathXmlApplicationContext("groovy-with-xsd.xml", getClass());
|
||||
Map<?, Messenger> beans = ctx.getBeansOfType(Messenger.class);
|
||||
assertEquals(4, beans.size());
|
||||
assertTrue(ctx.getBean(MyBytecodeProcessor.class).processed.contains(
|
||||
"org.springframework.scripting.groovy.GroovyMessenger2"));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* Copyright 2002-2016 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.scripting.groovy;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import org.codehaus.groovy.control.BytecodeProcessor;
|
||||
|
||||
/**
|
||||
* @author Juergen Hoeller
|
||||
*/
|
||||
public class MyBytecodeProcessor implements BytecodeProcessor {
|
||||
|
||||
public final Set<String> processed = new HashSet<String>();
|
||||
|
||||
@Override
|
||||
public byte[] processBytecode(String name, byte[] original) {
|
||||
this.processed.add(name);
|
||||
return original;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Copyright 2002-2016 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.scripting.groovy;
|
||||
|
||||
import org.codehaus.groovy.control.customizers.ImportCustomizer;
|
||||
|
||||
/**
|
||||
* @author Juergen Hoeller
|
||||
*/
|
||||
public class MyImportCustomizer extends ImportCustomizer {
|
||||
|
||||
public MyImportCustomizer() {
|
||||
addStarImports("org.springframework.scripting.groovy");
|
||||
}
|
||||
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:aop="http://www.springframework.org/schema/aop"
|
||||
xmlns:lang="http://www.springframework.org/schema/lang"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
|
||||
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
|
||||
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.5.xsd">
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<lang:property name="message" value="Hello World!"/>
|
||||
</lang:groovy>
|
||||
|
||||
<lang:groovy id="calculator" depends-on="messenger" customizer-ref="customizer">
|
||||
<lang:groovy id="calculator" depends-on="messenger" customizer-ref="groovyObjectCustomizer">
|
||||
<lang:inline-script>
|
||||
package org.springframework.scripting.groovy;
|
||||
import org.springframework.scripting.Calculator
|
||||
@@ -36,25 +36,32 @@ class GroovyCalculator implements Calculator {
|
||||
</lang:inline-script>
|
||||
</lang:groovy>
|
||||
|
||||
<lang:groovy id="customizer">
|
||||
<lang:groovy id="groovyObjectCustomizer" customizer-ref="importCustomizer">
|
||||
<lang:inline-script><![CDATA[
|
||||
import org.springframework.scripting.groovy.GroovyObjectCustomizer;
|
||||
|
||||
public class TestCustomizer implements GroovyObjectCustomizer {
|
||||
public void customize(GroovyObject o) {
|
||||
println "customizing ${o}.."
|
||||
public void customize(GroovyObject go) {
|
||||
println "customizing ${go}..."
|
||||
}
|
||||
}]]>
|
||||
</lang:inline-script>
|
||||
</lang:groovy>
|
||||
|
||||
<bean id="importCustomizer" class="org.springframework.scripting.groovy.MyImportCustomizer"/>
|
||||
|
||||
<lang:groovy id="refreshableMessenger" refresh-check-delay="5000"
|
||||
script-source="classpath:org/springframework/scripting/groovy/Messenger.groovy">
|
||||
<lang:property name="message" value="Hello World!"/>
|
||||
</lang:groovy>
|
||||
|
||||
<lang:groovy script-source="classpath:org/springframework/scripting/groovy/Messenger.groovy">
|
||||
<lang:property name="message" value="Hello World!"/>
|
||||
</lang:groovy>
|
||||
<lang:groovy script-source="classpath:org/springframework/scripting/groovy/Messenger.groovy"
|
||||
customizer-ref="compilerConfiguration">
|
||||
<lang:property name="message" value="Hello World!"/>
|
||||
</lang:groovy>
|
||||
|
||||
<bean id="compilerConfiguration" class="org.codehaus.groovy.control.CompilerConfiguration">
|
||||
<property name="bytecodePostprocessor" ref="bytecodeProcessor"/>
|
||||
</bean>
|
||||
|
||||
<bean id="bytecodeProcessor" class="org.springframework.scripting.groovy.MyBytecodeProcessor"/>
|
||||
|
||||
</beans>
|
||||
|
||||
@@ -7764,7 +7764,6 @@ set some default property values, or specify a custom `MetaClass`.
|
||||
public interface GroovyObjectCustomizer {
|
||||
|
||||
void customize(GroovyObject goo);
|
||||
|
||||
}
|
||||
----
|
||||
|
||||
@@ -7803,12 +7802,12 @@ of a `GroovyObjectCustomizer` is easy if you are using the Spring namespace supp
|
||||
[subs="verbatim,quotes"]
|
||||
----
|
||||
<!-- define the GroovyObjectCustomizer just like any other bean -->
|
||||
<bean id="tracingCustomizer" class="example.SimpleMethodTracingCustomizer" />
|
||||
<bean id="tracingCustomizer" class="example.SimpleMethodTracingCustomizer"/>
|
||||
|
||||
<!-- ... and plug it into the desired Groovy bean via the 'customizer-ref' attribute -->
|
||||
<lang:groovy id="calculator"
|
||||
script-source="classpath:org/springframework/scripting/groovy/Calculator.groovy"
|
||||
customizer-ref="tracingCustomizer" />
|
||||
customizer-ref="tracingCustomizer"/>
|
||||
----
|
||||
|
||||
If you are not using the Spring namespace support, you can still use the
|
||||
@@ -7821,13 +7820,19 @@ If you are not using the Spring namespace support, you can still use the
|
||||
<constructor-arg value="classpath:org/springframework/scripting/groovy/Calculator.groovy"/>
|
||||
<!-- define the GroovyObjectCustomizer (as an inner bean) -->
|
||||
<constructor-arg>
|
||||
<bean id="tracingCustomizer" class="example.SimpleMethodTracingCustomizer" />
|
||||
<bean id="tracingCustomizer" class="example.SimpleMethodTracingCustomizer"/>
|
||||
</constructor-arg>
|
||||
</bean>
|
||||
|
||||
<bean class="org.springframework.scripting.support.ScriptFactoryPostProcessor"/>
|
||||
----
|
||||
|
||||
[NOTE]
|
||||
====
|
||||
As of Spring Framework 4.3.3, you may also specify a Groovy `CompilationCustomizer` type
|
||||
such as an `ImportCustomizer` in the same place as Spring's `GroovyObjectCustomizer`.
|
||||
====
|
||||
|
||||
|
||||
|
||||
[[dynamic-language-beans-bsh]]
|
||||
|
||||
Reference in New Issue
Block a user