APT ANT 任务在 Eclipse 中失败,但在 shell 中工作

发布于 2024-08-21 19:55:25 字数 217 浏览 9 评论 0原文

我有一个 ant javac 任务,它应该运行一些注释处理器。从批处理文件运行时它工作正常,但从

失败并出现Error running javac.exe compiler

eclipse 启动时 。正常的编译 javac 任务工作得很好。

我猜从 eclipse 开始的 ant 使用了一些不同的编译器?
如何将其更改为普通编译器?或者以任何方式让它发挥作用?

I have a ant javac task which is supposed to run some annotation processor. It works fine when run from a batch file, but fails with

Error running javac.exe compiler

when started from eclipse. Normal compiling javac tasks work just fine.

I guess ant started from eclipse uses some different compiler?
How do I change it to the normal compiler? Or make it work in any way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽心 2024-08-28 19:55:25

这通常是因为 缺少 tool.jar

您在 Eclipse 集成中使用的 Ant 运行时类路径中缺少 tools.jar
如果您通过安装 JDK 启动 Eclipse(使用 -vm 参数),tools.jar 将自动添加。
否则,您可以使用Window>Preferences>Ant>Runtime>Classpath自行添加。 (另请参阅此线程

http://web.archive.org/web/20130109065622/http://img246.i_mageshack.us/img246/9712/eclipseantruntime.png

注意: fork="true" 可以 也有问题

It is usually because of a missing tool.jar

You are missing a tools.jar on the runtime classpath of Ant used in the Eclipse integration.
If you start Eclipse with a JDK install (using the -vm argument), tools.jar will be added automatically.
Otherwise, you can add it yourself using Window>Preferences>Ant>Runtime>Classpath. (see also this thread)

http://web.archive.org/web/20130109065622/http://img246.i_mageshack.us/img246/9712/eclipseantruntime.png

Note: a fork="true" can also be problematic.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文