我可以在 Google App Engine 中使用 JavaCompiler 吗?
有没有办法通过 Google App Engine 中的 JavaCompiler 调用 Java 源编译器?
(我在白名单上没有看到 javax.tools
中的任何类,所以恐怕答案是否)
更新
我想知道 Java Server Pages 在 Google App Engine 中如何工作,因为 JSP 被编译为 servlet,这显然需要 Java 编译器?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案是否定的(据我所知)。
您在 GAE JRE 类白名单中看不到
javax.tools
类的原因之一是它们不是 JRE 类!您需要安装 JDK 才能使用 Java 开发工具……包括编译器。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.