I have to continue on that.
Basically I want to run this in a server environment.
So I deploy easyb and my application to the server (own server system)
with the libs
The run fails with
java.lang.NoClassDefFoundError: groovy.lang.Script
at java.lang.ClassLoader.defineClassImpl(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:265)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:
69)
at groovy.lang.GroovyClassLoader.access$200(GroovyClassLoader.java:
54)
at groovy.lang.GroovyClassLoader$ClassCollector.createClass
(GroovyClassLoader.java:482)
at groovy.lang.GroovyClassLoader$ClassCollector.onClassNode
(GroovyClassLoader.java:499)
at groovy.lang.GroovyClassLoader$ClassCollector.call
(GroovyClassLoader.java:503)
this seams like it finds the groovy.jar but then fails to load the
correct class...
Is there a special way to manipulate the classloader ? I have no idea
about classloader so I actually have no idea how trivial or complex
this is...
Any possible hints ?