Groovy Add-on » History » Revision 7
« Previous |
Revision 7/22
(diff)
| Next »
Udo Offermann, 08.04.2013 16:31
Groovy Add-on¶
The Groovy Add-on allows to use the Groovy language within z2 applications. It supports pure Groovy modules beside pure Java modules as well as modules containing both Java and Groovy source code.
The Groovy Add-on comes with the Groovy version 2.1.2.
How does it work?¶
The z2-Groovy compiler checks for each source component (i.e. java/src.api
and java/src.impl
) whether it contains pure Groovy source files or Java and Groovy sources and chooses the appropriate compiler.
The Joint-Compiler of Groovy SDK compiles mixed Groovy and Java sources within three passes: In step 1) all Groovy classes are compiled as stubs (i.e. only the signatures w/o any lines of code) so that in step 2) the Java compiler from the JDK can compile all Java classes and resolve all dependencies to Groovy classes using the stubs. In step 3) the Groovy source files are translated into bytecode - since the Java classes are now translated, references from Groovy to Java can be also resolved correctly.
If however no Java sources are found step 1 and 2 are skipped and the compilation process is speed-up by leaving only the plain Groovy compiler!
A mixture of Groovy classes and Java classes across z2 modules is supported as well. Since cyclic dependencies are not allowed this does not even require the Groovy Joint-Compiler.
How do I use it?¶
At first you need to add the Groovy Add-on repository to your environment with gitcr.uri=gitcr.uri=http://git.z2-environment.net/z2-addons.groovy
(see also the environment
module of Sample Groovy Support).
environment/groovyAddon.properties:
com.zfabrik.systemStates.participation=com.zfabrik.boot.main/sysrepo_up # git stored component repository com.zfabrik.component.type=com.zfabrik.gitcr # true <=> optional repository. If gitcr.uri is invalid, then this gitcr will be ignore silently gitcr.optional=true # this can also point to a remote repository like # ssh://myserver/some/git/repo gitcr.uri=http://git.z2-environment.net/z2-addons.groovy # the git branch to use (e.g. 'master') gitcr.branch=master
Put Groovy source files into the same structure as Java source files - i.e. <module-name>/java/src.api
, <module-name>/java/src.impl
or <module-name>/java/src.test
(see the com.zfabrik.samples.groovy.web
module of Sample Groovy Support).
Edit the Java component descriptor and change/add the java.compile.order
property:
<module-name>/java/z.properties:
com.zfabrik.component.type=com.zfabrik.java
java.privateReferences=...
java.publicReferences=...
java.compile.order = groovy
When using Spring with AspectJ the compile order will be:
<module-name>/java/z.properties:
...
java.compile.order = groovy, spring_aspectj
You might need to change the heap and the perm size settings of the web worker since Groovy is usually more memory hungry than Java.
environment/webWorker.properties:
...
worker.process.vmOptions=\
-Xmx128m -Xms128m -XX:+HeapDumpOnOutOfMemoryError -XX:MaxPermSize=256m \
...
Updated by Udo Offermann over 11 years ago · 7 revisions