What is the meaning of the term 'headless' in the context of Java development in Eclipse?
Asked
Active
Viewed 1.2k times
27
-
4Oh my, harsh are the middle-ages! – Petar Minchev Apr 06 '11 at 08:14
2 Answers
33
Headless
means non-gui. Here is a good article.

Petar Minchev
- 46,889
- 11
- 103
- 119
-
Just to confirm I got it right, any use of Eclipse APIs in a non-GUI application is a 'headless usage of eclipse'. Right? – Shailesh Tainwala Apr 06 '11 at 08:23
0
Try:
java -jar /Applications/Eclipse.app/Contents/Eclipse/plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar -noSplash -data "workspace" -application org.eclipse.jdt.apt.core.aptBuild
It works for me
(The workspace parameter must be without "")

Manu Serrano
- 1
- 1