I'm currently trying to write an apt annotation processor. I can however not find the required tools.jar on my system. I'm on OSX, having installed the default JDK. Where can i find the apt-related classes?

link|improve this question

61% accept rate
feedback

2 Answers

up vote 2 down vote accepted

There is no tools.jar in the Apple-bundled JVMs, those classes are simply in classes.jar, which contains the other base Java library files (on my machine, here: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar).

link|improve this answer
That being said, you may want to rely on the new Java 6 annotation-processor system instead of the old-style Java 5 one. – Jean-Philippe Pellet Dec 7 '10 at 13:07
That's what I found to work now. – kungfoo Dec 7 '10 at 14:01
How does one test annotation processors? Do I programmatically start a compiler and feed it with processors and fake source files? – kungfoo Dec 7 '10 at 14:02
The best way I've found so far is to develop them form Eclipse and test them as regular Eclipse plug-ins, and finally, when they're ready, use them with javac. Look for documentation on how to develop and test Eclipse plug-ins and read about the JDT APT project (Eclipse has very good annotation processing support). – Jean-Philippe Pellet Dec 7 '10 at 15:00
feedback

com.sun.* classes must not be relied on. They are internal implementation and the risk is they will go away in the next version or on a different platform.

link|improve this answer
Those specific com.sun classes are reimplemented in the Eclipse JDT APT plugins, so if you're willing to use Eclipse, you always have this fallback option. – Jean-Philippe Pellet Dec 7 '10 at 22:05
feedback

Your Answer

 
or
required, but never shown

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