I've bought a Compaq Mini 733 (1.6G Hz Atom CPU, 1GB RAM, 4200 RPM HDD, XP Home) primarily for my girlfriend but also for me to use while on holiday, traveling about, etc. The rigorous of my job necessitates being able to write patches, small enhancements and system maintenance via ssh even when on holiday. (Not a bad thing--I work a fair week and get comp time and other perks.) Soooo much better than lugging the MBP around...

So, I'm usually coding Java 6 with a touch of AspectJ on Eclipse, can compile with ant, deploy to Tomcat, and use a plethora of secondary non-critical tools. I'm going to put Jetty, ant, and an SVN client on this little machine, without concern but I'm stumped as to what to do about an IDE? Eclipse is just too heavy for this platform...at least for my sanity, that is.

I'd really, really like code completion...everything else is fluff.

Suggestions for a lightweight Java IDE?

link|improve this question

feedback

10 Answers

up vote 12 down vote accepted

You may want to try jEdit: http://www.jedit.org

link|improve this answer
A very nice Code editor, with some amazing plugins to improve your programming efficiency. A good choice indeed. – Fábio Antunes Jul 25 '09 at 16:54
It's a pity you need a plugin just for tabs (BufferTabs, IIRC). – Tom Hawtin - tackline Jul 26 '09 at 0:50
1  
jEdit exactly is not lightweight. It is big, slow, inconvenient text editor. – uhbif19 Nov 12 '11 at 12:48
feedback

Vim has plugins that support code completion: http://www.vim.org/scripts/script.php?script_id=527

Emacs, too: http://www.emacswiki.org/emacs/JavaCompletion

link|improve this answer
feedback

Try JCreator. It has a freeware version, and it's coded in C++, so it's supposed to be light weight.

link|improve this answer
1  
I used to use JCreator for a couple of years before moving to IDEA. It's OK for a beginner, but the freeware version is very limited - even code completion and source code navigation are missing - that it will quickly become rather useless. – Esko Luontola Jul 25 '09 at 13:19
4  
Well, he didn't ask for freeware, I just mentioned it. – fish Jul 25 '09 at 13:21
3  
I am OK paying for software ;) – Stu Thompson Jul 25 '09 at 13:36
It's really lightweight, but Windows only. :( It might be possible to run in Wine, but... :D – kemiisto Nov 15 '11 at 20:31
feedback

Slickedit has pretty good Java-support and is extremely lightweight. It's not free, though.

link|improve this answer
I am OK paying for software ;) – Stu Thompson Jul 25 '09 at 13:35
Am I right, that the cheapest version costs 299$? =( – Dave O. Mar 12 '11 at 13:21
feedback

There's a list of Java open source IDEs here, including some I've not heard of (Cube-J ? tIDE ?). Several make the claim to be lightweight, and possibly worth some investigation.

Of course you can use something like VIM, and make use of the Intellisense plugin to give you code completion, plus numerous other plugins/scripts which are Java-focused.

link|improve this answer
feedback

Try NaviCoder IDE for Java, from the creators of Navicat.

http://www.navicoder.com/en/product/ide/detail.html

It's free for individuals and non-commercial use.

link|improve this answer
feedback

I was looking for the same kind of IDE like the topic initiator and I saw that someone suggested tIDE ; I found it, tried it and it suits perfectly with the requirements mentioned. It has code completion (intellisense in other words) ,it is very lightweight (not as lightweight as a text editor thou) , it has basic functionality (compiling with ant, jar creation, proj. management) plus other powerful tools. Simple and beautiful. I hope it will gain more visibility among java users. Congrats to the creator (Stephan Heiss) !

tIDE java IDE - small and powerful

link|improve this answer
feedback

Intelligent code completion requires quite a bit of introspection to be usable when you are used to a full IDE.

If you can live with only being able to complete your own code, you can look into creating tags for your files which can be done with e.g. etags for emacs and ctags for vi.

http://www.delorie.com/gnu/docs/emacs/etags.1.html

You can then type ESC-/ in Emacs to cycle through completions for the current word.

Emacs should run very well on your computer.

Also note that Tomcat is larger than absolutely necessary. Smaller servlet containers exist.

link|improve this answer
Tomcat: that is why i said I was gonna use Jetty... – Stu Thompson Jul 25 '09 at 14:57
Jetty may be big too. It is nice though. Depends on your needs :) – Thorbjørn Ravn Andersen Jul 25 '09 at 16:47
feedback

I am surprised that anybody hasn't told yet about Geany.

Yes, it is more similar on the text editor, than IDE. But Geany is very fast, simple and easy-to-use tool.

link|improve this answer
feedback

Not exactly an IDE, but I've found that simply remoting in to my work computer works great.

There's no need to set up two dev environments, all my apps are there, etc. The main annoyance is that scrolling can sometimes be a pain, but if you use page up/page down instead of the scroll bar, it's not bad.

Using SSH, you can easily tunnel RDP, VNC or similar through that connection. I recommend you give it a try and see how it works.

As far as using Vim (my preferred text editor), I sadly find it very lacking for code completion, so I don't use that feature. If I must use it for coding Java, I just keep a browser up with the API docs and flip to it when needed. VIM will help you with names you've already used in the same file, but otherwise I find the code completion slow and mostly useless (sorry Bram!).

Another editor I have not seen mentioned yet is Notepad++. It's free, open source and overall a nice editor. Give it a test-run.

link|improve this answer
I frequently travel to 'bandwidth challenged locations', so this is not an option for me. But thanks for the suggestion. – Stu Thompson Oct 22 '09 at 17:21
feedback

Your Answer

 
or
required, but never shown

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