Slashdot Mirror


Picking the Right Eclipse Distribution

Someone over at IBM Developerworks who prefers anonymity writes "Depending on what you want to do, there is probably a commercial or free distro built on the Eclipse platform waiting for you. From C/C++, Ruby, PHP, Groovy, Java, and Web development, you can use an IDE built on Eclipse to help you. The big question is: Which Eclipse distribution is right for you?"

78 comments

  1. Which Eclipse distro is best for you? by Anonymous Coward · · Score: 2, Funny

    Idk...my bff Jill?

  2. Whichever one doesn't require Java by Anonymous Coward · · Score: 0, Flamebait

    Oh, I know! Whichever one doesn't require an additional 100MB download to use on top of the nearly 200MB Eclipse download, and the one that isn't ridiculously slow because it uses Java.

    Oh, wait, that's none of them?

    Guess I'll stick with Visual Studio or KDevelop, depending on environment.

    1. Re:Whichever one doesn't require Java by allcar · · Score: 4, Insightful

      Why worry about a 300MB download? Is this 1995?

    2. Re:Whichever one doesn't require Java by setagllib · · Score: 4, Informative

      Right, because with an installer that occupies an entire DVD, Visual Studio is *so* much leaner than Eclipse' 100-200MB + JRE.

      You can fit Eclipse with JDT, CDT, PyDev, RDT, Subclipse, WST, DTP, etc. and the JDK (which includes source and documentation for the entire API), Python, Ruby, and heaps more, on one CD, with room left over. I know because I've done it. 7zip is your friend.

      --
      Sam ty sig.
    3. Re:Whichever one doesn't require Java by AnyoneEB · · Score: 2, Informative

      the one that isn't ridiculously slow because it uses Java. Ah, you mean this one. For instructions for any distro, see instructions for running Eclipse natively with GCJ from Classpath.
      --
      Centralization breaks the internet.
    4. Re:Whichever one doesn't require Java by the1rob · · Score: 5, Funny

      I kept reading the comment, but my brain stalled out halfway through converting all the acronyms.

  3. Netbeans ofcourse! by Anonymous Coward · · Score: 2, Informative

    Eclipse is so old school. Get in the game and try Netbeans, it's much improved and awesomely better than Eclipse.

  4. Whichever is most popular. by lightversusdark · · Score: 1

    Photran of course!
    It's what all the cool kids are using.

    In truth, I don't really care which components are bundled with installer X, Y or Z - I'll end up downloading what I need to add to my base installation anyway.

    --
    "There is nothing nice about Steve Jobs and nothing evil about Bill Gates." - Chuck Peddle
    1. Re:Whichever is most popular. by Z00L00K · · Score: 2, Insightful
      I start with the JDT and then add plugins as I need them, normally WST and it's requirements. Sometimes also Subclipse.

      It's all matter of taste and what you need. The good thing with Eclipse is that it's relatively easy to start with and you can adapt it to your needs.

      --
      If builders built buildings the way programmers wrote programs, then the first woodpecker would destroy civilization.
    2. Re:Whichever is most popular. by Gazzonyx · · Score: 1

      Have you tried Yoxos? I've yet to try Photran, but haven't needed anything other than yoxos or an update site since about late 3.1/early 3.2. Does it do dependency resolution for plugins?

      --

      If I mod you up, it doesn't necessarily mean I agree with what you've said, sorry.

  5. Web Development by antimatter15 · · Score: 3, Informative

    I use the http://aptana.com/ eclipse distribution for web development. Its great for PHP, RoR, JavaScript, HTML, etc. But I don't see it mentioned anywhere

  6. Editor vs OS vs Eclipse by Anonymous Coward · · Score: 1, Insightful

    If you want an editor: Vim.
    If you want an OS: Emacs.

    But not slow Eclipse.

    1. Re:Editor vs OS vs Eclipse by sinclair44 · · Score: 2, Informative

      Indeed. My "IDE" is a bunch of xterms in a good tiling window manager (ion3 in my case, with vim in most of the terminals). If anyone hasn't at least tried playing around with xterm + vim/emacs/joe/etc + ion/ratpoision/etc, you should give it a whirl for a while. I find I really really like it, after being addicted to eclipse for quite a while.

      --
      Omnes stulti sunt.
    2. Re:Editor vs OS vs Eclipse by DuckDodgers · · Score: 1

      A good IDE like Eclipse offers:
      1. Auto-complete - if you have an object "foo", type "foo." and it will give you a scrollable list of all methods and variables of foo legally accessible from the current context along with their parameter list
      2. Hot-key recompiling of your entire project
      3. Handy refactoring methods - for example, select a file, right click, select refactor, move and rename to another package, and then Eclipse moves the file and updates all package imports and name references in your entire project for you
      4. Auto-insert of common code, like getters and setters or extracting an interface or super class from a class, and a nice tree directory of your project you can navigate without needing a separate Konqueror/Windows Explorer window.
      5. Right click on any class, variable, or method in your code and generate a list of clickable links to every instance of that item.
      6. The option to use Emacs or Vim as your embedded text editor instead of the default.
      7. Drag and drop addition, removal, and update of dependencies like modules and libraries, without having to touch all of the affected configuration files by hand.
      8. Integration of CVS and Subversion including the ability to quickly visually diff files with what is in the repository or with a different branch.
      9. A clickable link of errors and warnings with each compile so that you can quickly navigate to problems at the line number they occur.

      A sufficiently godlike Vim or Emacs user with a monster typing speed and complete memorization of dozens upon dozens of commands with many custom macros and the ability to do shell escape complex commands can conceivably work as quickly. But it would take weeks of effort purely focused on mastering your text editor to match the same productivity you can get from a few days playing with your IDE.

      IDEs are popular for a reason.

    3. Re:Editor vs OS vs Eclipse by Anonymous Coward · · Score: 0

      Auto-complete - if you have an object "foo", type "foo." and it will give you a scrollable list of all methods and variables of foo legally accessible from the current context along with their parameter list With the JDEE, got that in Emacs with Java. C++, Python, Lisp, and probably other modes also support this.

      Hot-key recompiling of your entire project That's been in Emacs since 1985.

      Handy refactoring methods - for example, select a file, right click, select refactor, move and rename to another package, and then Eclipse moves the file and updates all package imports and name references in your entire project for you Emacs is still a bit behind on that, but the Semantic parsing code to enable it will be added to Emacs in the next version.

      Auto-insert of common code, like getters and setters or extracting an interface or super class from a class, and a nice tree directory of your project you can navigate without needing a separate Konqueror/Windows Explorer window. Those are two separate items. Emacs has the first one out of the box (Java-specific code in the JDEE), and with ECB you have the second one.

      Right click on any class, variable, or method in your code and generate a list of clickable links to every instance of that item. Emacs has that out of the box, except it's called "occur" and works on regular expressions. The JDEE has a more sophisticated version that works semantically.

      The option to use Emacs or Vim as your embedded text editor instead of the default Hardly needed in Emacs :-) but you can easily execute other editors on the buffer you are editing -- not to mention a vim-emulation mode that works better than vim.

      Drag and drop addition, removal, and update of dependencies like modules and libraries, without having to touch all of the affected configuration files by hand. That always breaks down for me in Eclipse when collaborating on projects.

      Integration of CVS and Subversion including the ability to quickly visually diff files with what is in the repository or with a different branch. Emacs has had that since 1992 (well, for different revision control systems back then, but the same integration).

      A clickable link of errors and warnings with each compile so that you can quickly navigate to problems at the line number they occur. Also in Emacs since 1985 (the clickability came a little bit later.)

      A sufficiently godlike Vim or Emacs user with a monster typing speed and complete memorization of dozens upon dozens of commands with many custom macros and the ability to do shell escape complex commands can conceivably work as quickly. There's no godhood needed for the features you described. The biggest stumbling block would be learning how to install the semantic parser, the JDEE, and ECB to get the extra chrome. Emacs itself isn't particularly hard to use.

      Last Christmas I was at an Amazon party, some party I have no idea how I got invited to, filled with business people, all of them much prettier and more charming than me and the folks I work with here in the Furnace, the Boiler Room of Amazon. Four young women found out I was in Customer Service, cornered me, and talked for fifteen minutes about how much they missed Mailman and Emacs, and how Arizona (the JSP replacement we'd spent years developing) still just wasn't doing it for them.
    4. Re:Editor vs OS vs Eclipse by DuckDodgers · · Score: 1

      The link you provide goes to a fascinating page, but the page has nothing to indicate that Emacs has a reasonably quick learning curve.

      I exaggerated my point in the earlier post, so I will repeat it more honestly here: it will take weeks of work dedicated solely to mastering Emacs before a typical person can have better productivity than someone with two or three days dedicated to learning a decent IDE.

  7. But let's talk about something else by Simon+(S2) · · Score: 2, Funny

    Since Eclipse is an IDE, and I don't really like IDEs, I use Jedit in Windows, and Kate in linux for my development.
    What editor do you other slashdotters use? Maybe you know one I have never heard of that is the holy grail.

    (Emacs vs vi posts coming in 3..2..1..) :)

    --
    I just don't trust anything that bleeds for five days and doesn't die.
    1. Re:But let's talk about something else by pembo13 · · Score: 1

      UltraEdit/Notepad++ in Windows, Vim in the Linux console, and Kate (sometimes Kdevelop) in Linux GUI.

      --
      "Thanks for all the money you paid to us. We've used it to buy off ISO among other things" -Microsoft
    2. Re:But let's talk about something else by rduke15 · · Score: 1

      In Windows, as someone else already mentioned: UltraEdit and Notepad++. I prefer Ultra Edit, but it's expensive. On all machines, I always install Notepad++, which is free, good, and has better syntax management than my old version of UE.

      In Linux, I use MC's built-in editor (mcedit) and Kate when I have a GUI. Will read the comments for other suggestions...

    3. Re:But let's talk about something else by Simon+(S2) · · Score: 1

      In Linux, I use MC's built-in editor (mcedit) I did not know about mcedit. Thanks for the hint, will give it a try.
      --
      I just don't trust anything that bleeds for five days and doesn't die.
    4. Re:But let's talk about something else by teh+moges · · Score: 2, Funny

      Please, nobody uses emacs anymore...

    5. Re:But let's talk about something else by Forbman · · Score: 2, Interesting

      $50US for UltraEdit is expensive? Uhhh...ok.

      UltraEdit is cool for "column edit" mode. RegExps only go so far.

      But, other than that, I use SciTE. UltraEdit these days is getting too bloated...

    6. Re:But let's talk about something else by rduke15 · · Score: 1

      $50US for UltraEdit is expensive? Uhhh...ok. Not really. Sorry, I somehow thought I remembered it was $90 a long time ago. At a time when the $ was much more expensive than it is now. Anyway, I can't really remember, because I didn't pay for it myself.

      And I'm still using that old version 8. I see it's at 14 now...

  8. one of these things is not like the other... by Moebius+Loop · · Score: 2, Funny

    From C/C++, Ruby, PHP, Groovy, Java, and Web development


    Groovy. Really?
    --
    have you been seen on slash?
    1. Re:one of these things is not like the other... by Allador · · Score: 1

      What is your complaint about Groovy?

      Lets you write code very similar to Ruby if you want, but its just java on the back-end, running on the JVM.

    2. Re:one of these things is not like the other... by Moebius+Loop · · Score: 1

      Well, I wasn't really complaining. It was just a joke.

      That being said, I've got nothing against Groovy, or BeanShell, or PNuts, or any of that ilk. But let's be realistic, it's only been around for *maybe* four years, and to I would suggest most people consider it a niche language that hasn't been around long enough to avoid the "flavor-of-the-month" label.

      Since the OP was advocating Eclipse as a universal development environment, it seemed odd to leave out Perl, Python, Lisp, and others, but still include Groovy.

      --
      have you been seen on slash?
  9. None of them by jlarocco · · Score: 3, Informative

    Eclipse sucks. It uses 10x more memory than it should, it's a gigantic download, it's slow, the user interface is annoying, it takes forever to start, getting support for new file types requires downloading dozens of megabytes of "plugins", the autocomplete is slow, it only allows you to do one thing at a time (i.e. try configuring build settings and starting a build at the same time), outside of installing (or creating) a new "plugin" it's not very customizable, different "project" types have radically different interfaces, ...

    I could go on all day. I'll stick with Emacs, thanks.

    1. Re:None of them by talksinmaths · · Score: 4, Funny

      try configuring build settings and starting a build at the same time

      When I read that, I couldn't help but think of this:

      Zapp: The key to victory is discipline, and that means a well made bed. You will practice until you can make your bed in your sleep.
      Fry: You mean while I'm sleeping in it?
      Zapp: You won't have time for sleeping soldier, not with all the bed making you'll be doing.

      ;-)

      --
      Don't you have someone you'd die for?
    2. Re:None of them by samkass · · Score: 1

      I find your post extremely amusing... most of your list used to be applied to Emacs compared to vi back in my day.

      Since my company pays for IntelliJ I don't have to deal with Eclipse, but I've used it a few times and, well, eh, it's just another IDE.

      --
      E pluribus unum
    3. Re:None of them by Profane+MuthaFucka · · Score: 1

      I used to absolutely NAIL people with the truth. EMACS uses 8 megs just to run. It's a bloated overworked pig of a program. No wonder there has to be an AI therapist included in there. Zing!

      It's been a long time since that actually worked. Now I use Eclipse.

      --
      Fascism trolls keeping me up every night. When I starts a preachin', he HITS ME WITH HIS REICH!
    4. Re:None of them by jlarocco · · Score: 1

      Oh, I definitely noticed that. But let me put it this way... if Emacs is terrible for using "Eight megs and constantly swapping", there's really no excuse for Eclipse using 800 megs with far fewer features.

    5. Re:None of them by Walking+The+Walk · · Score: 1

      there's really no excuse for Eclipse using 800 megs with far fewer features.

      I'm not sure where you got your numbers, but you're way off for Eclipse memory stats. I use Eclipse for Java, PHP (PDT), CFM (cfeclipse), Subversion (subclipse), controlling my MySQL databases (Data Tools), and Eclipse plugin development (PDE). With 4 Java projects, 2 PHP projects and one ColdFusion project open for the past week, Eclipse is using 370MB of memory. Of course the swap file is huge, but even Firefox has a swap file over a GB right now.

      As for the features, emacs is feature rich, but I think you'll have a hard time convincing developers that the features are better. Where is my RDBMS gui? Where is my Tomcat control panel? Profiling tools, workflow integration, UML diagramming and reverse engineering... And those are just the Eclipse features that I use.

      I can appreciate that Emacs is best for you, but please don't try to sell it as better for everyone. We can't all memorize C-x M-c M-butterfly.

      --
      A recursive sig
      Can impart wisdom and truth
      Call proc signature()
    6. Re:None of them by jlarocco · · Score: 1

      I'm not sure where you got your numbers, but you're way off for Eclipse memory stats.

      LOL! I have seen, with my own eyes, Eclipse use well over 800 megs. If it weren't against work policy, I would post a screenshot.

      I can appreciate that Emacs is best for you, but please don't try to sell it as better for everyone.

      Escuse me? Could you point out where I said anybody else should use Emacs? I was clearly listing the reasons I prefer Emacs over Eclipse. Never did I say anybody else should use Emacs over Eclipse. If you could point out where I did otherwise, I'd like to see it.

    7. Re:None of them by Walking+The+Walk · · Score: 1

      Escuse me? Could you point out where I said anybody else should use Emacs? I was clearly listing the reasons I prefer Emacs over Eclipse. Never did I say anybody else should use Emacs over Eclipse. If you could point out where I did otherwise, I'd like to see it.

      You're right, you did only say that you would stick to Emacs. I suppose I just assumed that answering a question of "What Eclipse distro should I use" with "None of them, Eclipse sucks, I'm sticking to Emacs" implied that you were recommending Emacs over Eclipse to the asker (and by extension, the Slashdot readers.) I'll answer the posted comments and not my own interpretation next time.

      On a related note, if your Eclipse installation is using more than 800MB of active memory, you have a serious problem. The biggest drawback to Eclipse is that there is no vetting process for the plugins. Excess memory consumption at that level implies either a bad plugin, too many heavy projects open (> 20) or a problem with your JRE. It might be worthwhile to check the memory limit in your eclipse.ini file. Xms and Xmx are the min and max; by default, they are usually 40/256, although many distros alter that.

      --
      A recursive sig
      Can impart wisdom and truth
      Call proc signature()
  10. INTERCAL? by Anonymous Coward · · Score: 1, Funny

    But is there an Eclipse distro designed for serious INTERCAL development? I don't see one.

  11. Slashvertisement by Grandiloquence · · Score: 2, Insightful

    "IBM developer" links to an IBM website promoting an IBM product? Congratulations, you just posted a Slashvertisement on the the front page!

  12. I go with lunar by Anonymous Coward · · Score: 1, Funny

    It lasts longer and solar burns my eyes.

  13. MOD PARENT UP by sentientbrendan · · Score: 1, Insightful

    Eclipse was impressive for a time, primarily for it's refactoring and intellisense capabilities. Now ever editor and it's mother can do that, and eclipse has *major* stability issues.

    I don't think I've ever worked on an eclipse project for significant time without it crashing. The biggest issue tends to be eclipse *running out of memory* on big projects. This often still occurs when I give eclipse a gigabyte or more of memory to work with. How the hell is eclipse using that much memory?

    Also, most of eclipse's lauded plugins have major stability issues, to the point where you basically can't use them. I find that your average eclipse plugin, even one's included in a common eclipse distribution, will die on basic things like null pointer errors. Haven't these people heard of unit tests? How about *any* kind of testing?

    Finally, I generally don't think that Java makes for good desktop applications. Java may be great for the server, but just because I'm *writing* java code, doesn't mean I want to be using java code to write it.

    Generally, long running desktop applications should be written in c or c++, and sometimes in python. Java's memory profile is such that desktop applications tend to suck up all available memory, and then crash, or become unresponsive while doing long garbage collections. In comparison c++ always uses the minimal amount of memory, and python is almost optimal since it uses reference counting.

    When the eclipse team had to roll it's own widget toolkit, they should have taken that as a hint and written it in c++, where there are numerous widget toolkit's available.

    The final problem with eclipse that I see, is that they are turning it into a general platform, that people can munge all of their java code into to write desktop applications as plugins to eclipse. All of these applications just inherit the problems that eclipse has.

    If you want to do java development, there are a lot of java editors and java IDE's out there.

    On the java java ide front there is:
    netbeans (by sun)
    intellij (costs money, but is supposed to be the best, so if you work at a company that will pay for it, who cares?)

    I can't speak as to whether these java IDE's have solved the memory problem, but they can't possibly be as bad as eclipse.

    For native c++ editors, check out slick edit. It supports intellisense and refactoring. It is highly efficient, and can support intellisense and refactoring *without* being used in IDE mode. Instead, you can use it as a light weight editor, while getting the benefits of an IDE in terms of a high level of understanding of the code. It does cost money, but then, who cares?

    1. Re:MOD PARENT UP by Anonymous Coward · · Score: 0

      Haven't these people heard of unit tests? How about *any* kind of testing? Yes, they have. You can even find out about the number of tests and whether they've passed or not from the project pages.

      Which, sadly, doesn't invalidate a thing about your comment. Yes, they have unit tests. Yes, Eclipse routinely crashes.

      I've started Eclipse and got an error message that read something like: "An error occurred while displaying the following error: an error occurred while displaying an error." (This followed by it core-dumping, which is somewhat impressive for a Java application.)

      No joking. I have a screenshot, but it's on my work computer and it's a holiday weekend in the US. :-)
    2. Re:MOD PARENT UP by pbaer · · Score: 1

      Netbeans might have memory issues as you scale up what you're doing with it, but I've never had memory issues with it and I have had memory issues with eclipse.

      --
      There are 11 types of people, those who know unary and those who don't.
    3. Re:MOD PARENT UP by geminidomino · · Score: 1

      On the java java ide front there is:
      netbeans (by sun) ...
      I can't speak as to whether these java IDE's have solved the memory problem, but they can't possibly be as bad as eclipse. Netbeans is. At least as far as being unusable on a non-uber machine. I was taking a Java course last semester (thankfully, I don't have to use it for work. I loathe java), and used vim for the basic java stuff, but in the end when we got to the JSP and Web App crap, I installed netbeans. When it used up 590 MB of my laptop's 512MB (mm... swap thrashing), I gave up and ran it on my 2G desktop.

      Horrible.

  14. It's not the "in" opinion.. but.. by Anrego · · Score: 4, Informative

    I actually like eclipse.

    It's ability to deal with multiple languages, and especially it's perspective system makes my job a lot easier.

    I think there are really two reasons people don't like eclipse.

    The first is obvious. It's a bloated resource hungry Java application. I definitely agree with this. For eclipse to be usable you need a pretty beefy machine. A lot of people refuse to use eclipse, even if they have a powerful machine, just on the principle that it is so damned bloated.

    The second is that the "out of the box" settings are terrible. Toolbars are in awkward places, important options are buried, and of course things like "highlighting occurrences", something I have _never_ understood the point of, are enabled by default. Eclipse takes a fair bit of tweaking before it becomes usable.

    1. Re:It's not the "in" opinion.. but.. by zarr · · Score: 2, Insightful

      I think "highlight occurences" is one of Eclipse's killer-features. It makes unfamiliar code _so_ much easier to figure out!

    2. Re:It's not the "in" opinion.. but.. by Magic5Ball · · Score: 2, Interesting

      I've not had to use Eclipse in some time now, so please forgive a simple question: What is it about Eclipse's current modules/packaging/customization/business logic that makes the choice of distribution necessary? Is it no longer as simple as just installing plugins?

      --
      There are 1.1... kinds of people.
    3. Re:It's not the "in" opinion.. but.. by Gazzonyx · · Score: 1

      No, this it's still just plugins, there's just a lot of them. It's just like a Linux distro these days. Sure, you could roll your own, but your usage will probably fall in to a certain category where there is a software (plugin) stack that everyone else with that usage pattern will have. So, it's easier to just hit the ground running with a preconfigured stack. Also, as with Linux distros, each distro has its own automated, dependency checking and gathering, interface. They also tell you when there are updates, etc., which is also nice.

      --

      If I mod you up, it doesn't necessarily mean I agree with what you've said, sorry.

    4. Re:It's not the "in" opinion.. but.. by Anonymous Coward · · Score: 0

      Your second point is a direct consequence of the first. The reason I don't use it is because it is a platform built on top of a platform(Java). It's pretty much guaranteed to be bloated and slow and a pain in the ass to work with. If you are a Java developer then you may not notice the Java platform sitting under you, but it's still there.

    5. Re:It's not the "in" opinion.. but.. by Anonymous Coward · · Score: 0

      Could it also be the non vi key bindings????

    6. Re:It's not the "in" opinion.. but.. by Anonymous Coward · · Score: 0

      I agree. IDA also uses such a highlight, and it's very helpful.

  15. VIM for the masses by Anonymous Coward · · Score: 1, Insightful

    Because we don't want an editor that starts up 1 hour [emacs].

  16. my 2 cents by Anonymous Coward · · Score: 2, Funny

    picking an eclipse distro is a lot like picking your ass. A little weird and painful at first, but then it starts to feel real good. Then your mom walks in and you're left with a deep sense of shame and a stinky finger.

  17. Which one for c#./mono? by aauu · · Score: 2, Interesting

    Are there any considerations for c#/mono development. I need to connect to Oracle, MySQL and SQL Server from Linux. c#/mono has this connectivity out of the box.

    --
    When I was young, I had to rub sticks together to compute.
    1. Re:Which one for c#./mono? by Gazzonyx · · Score: 1

      Emonic, and there are a number of SQL server plugins.

      --

      If I mod you up, it doesn't necessarily mean I agree with what you've said, sorry.

    2. Re:Which one for c#./mono? by Gazzonyx · · Score: 1

      Sorry, I don't think I was clear in my last post; Emonic is a third party plugin. There are also a great number of other plugins.

      --

      If I mod you up, it doesn't necessarily mean I agree with what you've said, sorry.

  18. I agree by Gazzonyx · · Score: 4, Insightful

    I agree with your assessment, and I really do like eclipse. The bloat isn't too bad when you consider the trade-off of flexibility; on any given day, being a software development major with an internship, I may be using any one or more of 4 OSes, and any number of flavors thereof. I may also be using any one of several desktops between school, home, and work. Furthermore, I may be using any number of languages.

    Eclipse is the only IDE that I've found that can work across all these scenarios, and leave me with the same IDE across multiple languages. I don't have to worry about remembering the layout of multiple IDEs for each language or OS, and that makes me more productive. I install the plugins that I need (YOXOS, FTW!), and I can drop the eclipse directory on a network share, USB drive, or live CD and have the same environment everywhere I go. Every computer has a JRE installed these days. Also, each summer they do an incredible job of releasing multiple projects on the same day. The built in debugger is great, too. I've yet to find a better way to debug multi-threaded apps. Finally, you can specify, at launch, the memory parameters for the IDE via the normal JRE flags (-xmms, -xmlimit, etc.) if you aren't on such a beefy machine. But then again, if you're developing and debugging any language 'higher' than c/c++ these days, your sanity will depend on having a fairly beefy machine. Especially if you want to have firefox open on one screen and your IDE open in another (although, you can open firefox in Eclipse if you haven't the extra screen real estate).

    It's unfortunate that the in crowd, armed with mostly FUD and occasional actual arguments, has decided that Eclipse is 'teh sux0rz'. I've yet to find many people who can put up much of an argument against Eclipse that doesn't center around; "Java is slow" (1996 wants their troll back, modern JITs are nearly as fast as native machine code), "it's ugly" (right, does it work?), "it uses too much memory" (ok, have you bothered to change your JRE memory settings?), "it's a huge download" (without JRE the base download is less than 100 MB), "dependency chasing sucks" (true, have you tried YOXOS?), "I'd prefer emacs" (I prefer vi, but you won't catch me writing or debugging a high level language in it). To each his own, but Eclipse is a great IDE if you give it a shot.

    --

    If I mod you up, it doesn't necessarily mean I agree with what you've said, sorry.

    1. Re:I agree by Raenex · · Score: 1

      Highlighting occurrences is one of my favorite features. It's great to double-click on an variable/method/class and see where it's used throughout the file. You can even do stuff like highlight embedded returns in a method.

      However, there is one preference I had to change to make it usable: I unset "Keep marks when the selection changes", so that if you click away the highlighting goes away too. Without that setting I was annoyed too when I first came across this feature.

  19. You are wrong, Eclipse has its uses by Mantaar · · Score: 4, Informative

    You're wrong. Most people are. That's because they don't know about the awesomeness that is eclim. It's a nifty little plugin that keeps a headless Eclipse instance running and exports its features to vim. So you can have automatic code highlighting, manage your classpath efficiently, have your get/setters done automatically, auto-completion, auto-whatnot.

    It's great! Give it a try. I would never use Eclipse itself, but I wouldn't want to miss eclim...

    --
    I'm an infovore...
  20. Sorry, got sick of it... by mritunjai · · Score: 3, Interesting

    I was an avid user of eclipse for about 3 years. I'd say avid user _and_ advocate!

    Then I got sick of the direction it took around 3.1 release. Here are they in no specific order:

    * No direction sense in platform development: Eclipse was supposed to be an application development platform. However, it seemed the Eclipse foundation was eager to include each and every requirement of its members (the big names!). The platform became a mess that I just can't figure out how to update my code to 3.x line. The documentation was _pathetic_ and things just don't work.

    * The documentation SUCKS: Did I mention it already ? Did I mention that most of it either just doesn't exist or hasn't been updated for 3.x ? Did I mention that the members mostly try to make money around "training" people in it ?

    * The plugin nightmare: The plugin and update system just doesn't work! Yes there are a lot of plugins available, but trying to keep track of them and their dependencies is a nightmare. Some plugin needs GEF 2.1 an other needs 2.3. The dependency hell was unmanageable. Mostly it was like that - I would create an installation and once I got it working "somehow", I wouldn't touch it! Updating it would really mean creating another eclipse installation and mucking about there till I got things "right" and only then switching to it.

    * J2EE Support - rather the lack of it: MyEclipse was best then. It sucked.

    I went there just yesterday, and for life of me couldn't figure out why they split it into so many distros... and over that if I need a GUIDE to tell me what is right for me - well they're not doing it right then!

    I tried Netbeans 6 once. Now with Netbeans 6.1 - It's just perfect. It *just* works and DOES NOT nag me! When I'm doing my work I want my tools to work right.

    Play when playtime, work when time to work! Netbeans 6.1 fits that *perfectly*. Oh, that and the jVi plugin for netbeans which provides "optional" Vi/Vim mode for Netbeans editor and I'm just set.

    Did I mention that Netbeans is best when it comes to J2EE/Web development ?

    --
    - mritunjai
    1. Re:Sorry, got sick of it... by tachyonflow · · Score: 1

      I tried NetBeans the other day. Unfortunately, when I tried to run NetBeans on one machine and display it on another machine, it just showed up as a big, empty gray box. :(

      I found a few bug reports related to Swing applications (such as NetBeans) having this behavior in certain situations, but Sun doesn't seem very interested in fixing the problem. It's frustrating because every other X application (including Eclipse, which is not based on Swing) works just fine and dandy over the network.

      Since I end up running the IDE over the network from another machine, I guess I'll have to continue using Eclipse for now. :/

    2. Re:Sorry, got sick of it... by Count+Fenring · · Score: 1

      Seriously, the plugin system works so freaking badly. I have had MULTIPLE 3-5 hour install nightmares based around the CDT and the various PHP plugins from a stock Eclipse download.

      Not to mention the problems you run into when you have multiple JREs in Linux.

      Back in the old days, I used Eclipse because Sun's offering ground my computer to a halt. But today, Eclipse does that, and is impossible to manage plugins-wise.

    3. Re:Sorry, got sick of it... by lytles · · Score: 1

      i'm doing this, and it works for me. from linux (old suse) to linux (current ubuntu). works fine for me.

      doubt it will help, but worth trying. rm -R your .netbeans/var/cache directory. doing this also lets you make sane backups of the .netbeans dir. good luck

    4. Re:Sorry, got sick of it... by tachyonflow · · Score: 1

      I'm not sure why this problem occurs for me and not for you. I'm attempting to run NetBeans 6.1 with Sun's JDK 1.6.0_06 (64-bit) on an Ubuntu 8.04 box (amd64) and displaying it on an Ubuntu 7.04 box (also amd64). It turns out that Netbeans was not hung, it was just REALLY slow. Slow as in "takes a minute and a half to draw the screen" slow. I tried your suggestion about the cache directory, but it didn't help. I did get curious, though, and looked into the matter a little further.

      I performed some X Protocol analysis on the X11 connection using xmon, and discovered that there was a horrendous amount of activity between the client and the server due to the client trying to update the display a few pixels at a time. As if that wasn't bad enough, it was reading (!!!) those few pixels from the display before updating them and writing them back, which means the loop had to do an XSync() of some sort, so the loop was twiddling its thumbs while waiting for a synchronous round-trip response every few pixels! I took a look at the source code for OpenJDK and NetBeans, and after learning more than I ever wanted to know about the Java Swing -> Java 2D -> X11 graphics pipeline, I found out I could fix the problem by setting the "sun.java2d.pmoffscreen" property to "false" in netbeans.conf.

      The key ideas are in Sun's white paper Graphics Performance Improvements :

      One drawback with both remote X and DirectDraw is that neither antialiasing nor alpha-blending can be accelerated. In fact, antialiasing and alpha blending operations on remote X are usually much slower compared to version 1.3 because the image must be copied to the X client to perform one of these operations and then the new image must be copied back to the server. ...Since most Swing applications do not use alpha blending or antialiasing anyway, this problem should not cause serious concern for developers using Swing.
      ...
      Starting with the Beta 3 release of the SDK, version 1.4, Java 2D stores images in pixmaps by default when DGA is not available, whether you are working in a local or remote display environment. You can override this behavior with the pmoffscreen flag:
      -Dsun.java2d.pmoffscreen=true/false
      If you set this flag to true, offscreen pixmap support is enabled even if DGA is available. If you set this flag to false, offscreen pixmap support is disabled. Disabling offscreen pixmap support can solve some rendering problems.

      I suppose they didn't have NetBeans in mind when they wrote "most Swing applications do not use alpha blending or antialiasing anyway." Unfortunately, disabling offscreen pixmap support also disables antialiasing, so the fonts don't look nice and pretty like in Eclipse, which manages to support antialiasing on remote X displays somehow via its SWT/GTK+/X11 stack.

      Now that I have NetBeans working somewhat tolerably, I guess I can begin evaluating it now. But not until I get some sleep. :)

    5. Re:Sorry, got sick of it... by rjshields · · Score: 1

      Not to mention the problems you run into when you have multiple JREs in Linux.
      I have 4 or 5 JREs installed, what's the problem?
      --
      In this world nothing is certain but death, taxes and flawed car analogies.
    6. Re:Sorry, got sick of it... by Count+Fenring · · Score: 1

      Maybe it's just me, but I've had trouble getting it to stay configured with one JRE without using command-line options.

    7. Re:Sorry, got sick of it... by Slashdot+Parent · · Score: 1

      I tried Netbeans 6 once. Funny coincidence, about 2 months ago I decided to try out Netbeans.

      I'm still waiting for it to load. But when it finally finishes, I bet it will be real good. I can hardly wait.
      --
      They don't grade fathers, but if your daughter's a stripper, you fucked up. --Chris Rock
  21. Eclipse is a goddamn mess by Anonymous Coward · · Score: 0

    Eclipse is a pretty good product. It is, however, damned impossible to figure out what to even download/run/install to get it working with what you want to do.

    1. Re:Eclipse is a goddamn mess by MisterBlueSky · · Score: 2, Informative

      A good solution is installing the EasyEclipse distribution which suits your need: http://www.easyeclipse.org/site/distributions/index.html They have ready-to-run out-of-box distributions for Desktop Java development, for Mobile Java development, A LAMP distribution: development with PHP, Python, Perl, and Ruby development with a web server and a database. They offer also an Easyeclipse distribution which includes everything you need for C/C++ develepmont.

      No need to go through the horror of trying to add new plugins and fighting the depency horror. The distributions come with everything included: Choose distribution->download->run.
      See: http://www.easyeclipse.org/site/distributions/index.html

  22. PIDA, it loves you! by Shazow · · Score: 4, Informative

    I use PIDA, because it loves me.

    It's more of an IDE "container" that handles things like file browsing, buffer management, multiple projects, consoles, TODO/FIXME comments, pastebin, and more. It supports vim, emacs, and others. Makes life much easier. Personally, I use the vim mode.

    Nothing quite like having an IDE tell me it loves me each morning.

    - shazow

  23. Wait a minute! by MisterBlueSky · · Score: 1

    Did I mention that Netbeans is best when it comes to J2EE/Web development ?
    Is this some kind of trick question?
  24. Netbeans astroturfing here too? by Anonymous Coward · · Score: 0

    Ahh, more 'grassroots' Netbeans testimonials.. Oh and look.. it's an AC. One of them popped up on the WebObjects mailing list a few days ago. Nevermind that Netbeans really has -nothing- to offer WO devs that even remotely approaches the functionality of WOLips.

    Apparently though, spamming sites with complete bullshit is the marketing scheme du jour.

  25. Why is eclipse popular? by pbaer · · Score: 2, Interesting

    I've never really understood eclipse's popularity. It has a bad UI, it's slow and has dumb default settings (compile on save). I've found netbeans to be much better in all three areas, but mainly the UI. Granted, I've only used eclipse/netbeans for small java projects (1k loc). So does eclipse have some killer feature that I don't know about?

    --
    There are 11 types of people, those who know unary and those who don't.
    1. Re:Why is eclipse popular? by Peeteriz · · Score: 1

      I'm eager to try something better - can you point me to a better IDE for me? I'm not on it full-time and don't want to get deep, but I need to maintain/develop some Java apps, and need an IDE for development/debugging small Java apps for win32 desktop use, I currently use Eclipse for that. What would be a better choice?

    2. Re:Why is eclipse popular? by MadAndy · · Score: 2, Informative
      Ummmm... I *love* the compile on save - errors highlight as you make them, and you thump the run button and your project just runs. For small projects, why would you ever turn it off?

      I have to admit I know nothing about Eclipse distros, I just downloaded this thing called Europa that the Eclipse site pointed me at, and never looked back - I've had very little problems with it.

      It's a big beastie alright, and digging thru the options (esp for J2ME work) can be a mission. Could use a tidy-up. The other thing is the initial startup experience - it starts well with a nice intro screen, but there's not a lot of follow-through.

      Aside from that, I run it on an old P4-3Ghz with 1Gb of RAM. If it's slow, it's not java - I changed my mind about that when I tried Azureus on my old P2-350 - and that looks and feels like any other windows app.

      Perfect? Nah. If I were doing a windoze app I'd use C# and VS before java. Now if you want to see something slow 'n bloated try running Visual Studio...

  26. The Right Distribution by pdusen · · Score: 1
  27. "None" is the right answer for me. by pain · · Score: 1

    After trying to upgrade my eclipse environment I was left with a non working installation, that will spill out Java errors like hell. Since I knew how long it would take to set up all the plugins again in a new installation of eclipse, I hat to think about what it was that I really need as a developer. Since I used Emacs before switching to Eclipse, it is really an Editor need. Komodo Edit seems the right choice for me right now. Different language support is available out of the box. That tastes good enough to me. Good bye eclipse for now.

  28. The obvious answer is... by kaffiene · · Score: 1

    Netbeans

  29. It's good if you develop for just one language by Xamusk · · Score: 0

    I use Eclipse and think it's pretty fine if:

    - you have a good machine to deal with the requirements (by the way, in Linux, using the sun jre instead of gcj helps a lot)

    - you're only coding in one language. I'm involved in a project where I have to code both python (I use PyDev) and C++ (through SWIG), but it appears that when I setup a project, I'll be stuck with the feature of only one of them. In my case, I have a PyDev project but when I open a .cpp file, even though Eclipse does support some features like syntax highlighting, it does not provide me with autocompletion or integrated debugger for both languages.

  30. Scientific Tests Show Eclipse Is Not Too Bad by Anonymous Coward · · Score: 0

    WARNING: ALL TESTS PERFORMED ON LINUX. ON MICROSOFT YOUR BOREDOM WILL EXPLODE.

    The machine on which I do most programming at home has an ASUS P2B mobo with
    a Pentium III 450 MHz cpu and 378MB dram - IOW this is a very old machine

    OS is Slackware 12.1
    Java runtime is jre version 6 update 6.
    Eclipse is version 3.3.2 (eclipse-c++-europa-winter) with updates and pydev.

    I have made 50 timed startups of eclipse on this machine and the average startup time
    is 32 seconds, (on another machine, a Dual Core Xeon, when I wait for VISTA to startup I can actually yawn for as long as 4.8 minutes).

    With the following running: FVWM, Seamonkey, NEdit(4 files open in tabs), Rxvt(x3),
    Gkrellm, XMMS, Eclipse, and Midnight Commander there is still 227MB free.

    Eclipse remains responsive, including code completion calltips.

    I have tried the WING IDE demo... the average startup time of 50 tests is 45 seconds.
    Code completion is unusable because of long delay; cpu usage hits a steady 100% when scrolling so that editing becomes an exercise in finger gymnastics!

    I am very happy with eclipse for large projects; for small 1 to 5 file projects
    I use NEdit+Rxvt+make

    At work, the machine I use is a dual Athlon 64X2 TK-53, 1.7GHz with 2GB ram - a very average platform.

    The same tests as above produce an average startup time for eclipse of 8 seconds!

    I know the test methodology is unscientific, but the results are realistic none the less.

    Netbeans is very good, but with eclipse I can program in C++, Java, and Python from within the same IDE.

    With respect to configuration and customization, I never read any help and yet I still
    set eclipse up about 80% as I want it, then for the rest I read the documentation.
    Now I challenge anyone to show documentation for another IDE that is as complete and
    thorough as that for Eclipse.

    As far as bloat goes, compare Eclipse with some other software you may already be using like: Visual Studio, Openoffice, MS Office, KDE, GNOME, etc, etc... actually KDE is not too bad either after all unneeded services are turned off.

    If you haven't tried eclipse yet I suggest you do, you may just like it very much.