Recompilation problem with groovlets (Groovy)
- by BasB
I'm new to Groovy, really like it, but found a compilation problem. I'm using Jetty as a webserver, which is serving .groovy files (groovlets)
Consider two files:
Test1.groovy which contains:
println new Test2().property
Test2.groovy which contains:
public class Test2 {
String property = "print this"…