In this blog I’ll describe how I used the Eclipse compiler for compiling Java source on-the-fly to create instant ‘view’ of the result.
More precisely I’ll show how to compile and invoke the following simple HalloWorld class on the fly:
public class HalloWorldTest{
public static void main(String[] args) {
System.out.println("Hallo world");
}
}