Is there a way to invoke the Java source compiler via JavaCompiler in Google App Engine?

(I didn't see any classes in javax.tools on the white list, so I'm afraid the answer is no)

UPDATE

I'm wondering how Java Server Pages work in Google App Engine, since JSPs are compiled to servlets, which obviously would require a Java compiler?

link|improve this question

1  
regarding JSPs: Some (many? most?) JSP containers bring their own Java compiler. For example recent Tomcat releases use the Eclipse Java Compiler for this. They don't need those APIs. – Joachim Sauer Dec 22 '10 at 9:36
feedback

1 Answer

up vote 1 down vote accepted

The answer is no (AFAIK).

One reason that you don't see the javax.tools classes in the GAE JRE class whitelist is that they are not JRE classes! You need a JDK installation to use the Java development tools ... including the compiler.

link|improve this answer
Your answer (no) is good, but I think theses classes ARE in the JRE, at least as of JDK 1.6 : download.oracle.com/javase/6/docs/api/javax/tools/… – Valentin Rocher Dec 22 '10 at 8:15
@Valentin: while those interfaces exist in the JRE, there's no guarantee that you can actually get an implementation, since ToolProvider.getSystemJavaCompiler() is defined to return "null if no compiler is provided." – Joachim Sauer Dec 22 '10 at 8:36
You're right, didn't see that first :) – Valentin Rocher Dec 22 '10 at 8:39
Thanks, and please see my update... – Tony the Pony Dec 22 '10 at 9:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.