Hacker News new | ask | show | jobs
by ibejoeb 5443 days ago
Many don't like eclipse at first. I think it's really a personality thing, but it also depends on what kind of work you're doing.

If you're writing core Java, like a library or something, a text editor ought to do. You could also try IntelliJ community edition.

If you're doing JEE, Spring, OSGi, or mobile stuff, you'll actually want a true IDE. Don't think it's unclean to use one. Consider the IDE part of your toolchain. It's not so much the code completion and syntax highlighting as it is management of deployment descriptors, artifact formats, configuration management, and integrated build and deploy functionality.

If you want to get started with good, out-of-the-box functionality, go with NetBeans. It feels very integrated (that's the I, right?) and it has project templates with sane structures for almost every type of application you're going to build.

Eclipse has similar templates, but it's more of starting point that requires customization to really get rolling.

If you're new, see how NetBeans feels. Later down the line, when you're more comfortable with all of the internals of how JEE works, I'd recommend going back to Eclipse and looking at it with your new knowledge. Things will make a little more sense.

1 comments

I am mainly writing code for Hadoop. I find that I learn better when I actually physically write the code which is why I am trying to find a more vim like editor but the problem is that Java is incredibly verbose which makes it rather tired to keep rewriting Map and Reduce code.
But that's more a concern about Java than the IDE. You can type code character-by-character into Eclipse as well as you can in vim as well as you can in any plain text editor. If you're going to use an IDE, I know that Eclipse is the industry standard, but it's far from the only choice. I've used paid plugin packages (MyEclipse and IBM's RAD) and found them unstable and buggy. I stick with vanilla Eclipse if I have any choice.

I've heard good things about IDEA, but I've never done more than relatively simple work with it and can't speak to its benefits over Eclipse or any other IDE.