Are there any great plugins out there for Eclipse, either free or otherwise?

link|improve this question
feedback

51 Answers

1 2
up vote 51 down vote accepted

Here's a list of plug-ins I use whenever I setup Eclipse for Java development (this list is updated for Indigo/3.7):

  • Eclipse's WTP tools - if you install the Eclipse for Java EE developers these are already installed. This is what I've used as a base since 3.5 came out.
  • AnyEdit tools - converts Tabs <-> Spaces whenever you save a file
  • eclemma - code coverage
  • OpenExtern - this gives you "Open Command Prompt Here" and "Open Explorer Here" options in your context menu
  • Spring IDE if I'm working with the Spring Framework. You can also install eclemma, Subersive, Groovy support and Grails support from the Spring IDE dashboard.
  • Maven Eclipse Integration if I'm working with Maven
  • Various plugins to work with whatever source control I'm using: EGit for Git, Subversive with SVNKit for SVN, Merclipse for Mercurial, Rational's ClearCase plugin
  • Groovy Eclipse if I'm working with Groovy
  • jadclipse or JD-Eclipse for decompiling class files

I previously recommended Eclipse Platform Extensions but that doesn't work on Eclipse 3.4 and 3.5.

Update: I've removed commons4e since Eclipse 3.5 now has toString method generation built in.

link|improve this answer
show 3 more comments
feedback

I did a blog post on that once: http://svrist.wordpress.com/2008/04/03/eclipse-setup/

And the summary is:

The plugins I’ve current stablized on are:

link|improve this answer
2  
+1 for Findbugs – Trick Feb 22 '10 at 13:39
feedback

mylyn, view your bug tracker within eclipse (bugzilla, trac, etc). When you are working on a bug you create a context which basically watches what you work on. With doing that you only see code that you need to see not your whole tree.
http://www.eclipse.org/mylyn/
great video about mylyn
http://live.eclipse.org/node/573

tasktop, this plugin works with mylyn. Basically will link to your mail client, calendar, browser, and file system. There is a free version and a paid version ($99). What i like about the free version is it will tell you what bugs you worked on and how long. So you have pie charts showing what you did for the week and bar graphs for each day of the week.
http://www.tasktop.com

pdt (php plugin)
http://www.eclipse.org/pdt/

svn client (i think this is the better svn client for eclipse)
http://www.eclipse.org/subversive/

krugle (search open source repos for most languages)
http://www.krugle.com/community/plugins.html

dbviewer, great plugin to work with any db.
http://www.ne.jp/asahi/zigen/home/plugin/dbviewer/about_en.html

Great plugin sites to find more plugins
http://www.eclipse-plugins.info/eclipse/index.jsp
http://www.eclipseplugincentral.com/

link|improve this answer
feedback

The FindBugs plugin for Eclipse is good for static code analysis. It can be downloaded through the Eclipse update manager with this URL: http://findbugs.cs.umd.edu/eclipse

Swing Explorer is a very useful tool for debugging your swing applications, and it has a plugin for Eclipse. The plugin adds another type of app to the run configurations that instruments your code on startup and allows you to browse the swing object heirarchy as well as highlight things visually. You can add it with the Eclipse update manager with this URL: https://swingexplorer.dev.java.net/eclipse/site.xml

link|improve this answer
feedback

When I code in Eclipse I also use the excellent checkstyle plug-in, which is a modifiable code analyzer. That way you can always see if you abide by your (or the general) coding standards.
I also recommend the metrics plug-in for Eclipse which calculates the complexity of your code. It can handle:

  • McCabe's Cyclomatic Complexity
  • Efferent Couplings
  • Lack of Cohesion in Methods
  • Lines Of Code in Method
  • Number Of Fields
  • Number Of Levels
  • Number Of Locals In Scope
  • Number Of Parameters
  • Number Of Statements
  • Weighted Methods Per Class

Finally the code coverage plug-in is really handy when you also (and you should!) unit test your code. This plug-in allows you to visualize which code paths are checked and which ones are not. (It can also do this check when you launch the project from the static main function of your project.)

link|improve this answer
feedback

A group of us at school recently developed and submitted an entry to the Google Android Developer's Challenge. Throughout the course of our development, we used a Subversion repository to control revisions of our code and I found Subclipse to be an excellent plugin for Eclipse. Very little command-line SVN usage was necessary... the plugin handled everything.

link|improve this answer
feedback

For XML editing, XMLBuddy has been rock solid.

link|improve this answer
2  
xmlbuddy.com is no longer available! – fastcodejava Apr 30 '10 at 12:23
show 2 more comments
feedback

Try the Implementors plugin at http://eclipse-tools.sourceforge.net/implementors/.

If you work a lot with interfaces then you will absolutely love this plugin! It lets you easily open the implementation(s) of an interface or a method from the Java editor context menu.

The plugin is very well implemented, small and lightweight.

Eclipse update site at: http://eclipse-tools.sourceforge.net/updates/

From the website

The Implementors plugins add the possibility to jump to the implementation of of an interface. Alternatively, you can jump to the interface of an implementation.

The jumping to implementation/interface works for plain Java files. In addition, when associating EJB deployment descriptors with a project, the plugin is made aware of the connection between the EJB interfaces and the implementation class, something which is not specified in the implementation class itself.

link|improve this answer
show 1 more comment
feedback

Can't forget the amazing http://projectlombok.org/!!

link|improve this answer
feedback

Another plugin that's handy for task management is Mylyn.

link|improve this answer
feedback

Google recently acquired Instantiations, who had a few nice Eclipse-based development tools, and made most of them available for free.

I have extensive experience with WindowBuilder Pro, and as far as Java GUI builders go, this is my favourite. I also played around with CodePro Analytix a bit, but didn't have time to delve into the depths of its impressive feature set.

link|improve this answer
feedback

Being a python developer, PyDev is the one I use most extensively.

I also use and like P4WSAD (for Perforce), Subclipse, and EclipseNSIS.

link|improve this answer
feedback

Findbugs and Checkstyle are my favorites. Here is a desription how to install and use them: link text

link|improve this answer
feedback
  • Tomcat Launcher: Start/stop tomcat from within eclipse.
  • OpenExtern for opening file manager or cmdline prompt window (any OS).
  • viPlugin because after fifteen years I can't use any other editor efficiently.
  • Jigloo GUI builder (Swing and SWT).
link|improve this answer
feedback

Doqua is a pretty slick, unique "documentation plugin" - so developers seriously have no more excuses to write good documentation. :)

link|improve this answer
feedback

If you're using subversion for your vcs, then I recommend the subversive plugin

link|improve this answer
feedback

ESFTP - secure FTP plugin

link|improve this answer
feedback

I like the Easy Explorer plug-in. It makes it easy to jump to the folder in the file system in Windows Explorer from the resource tree panel.

link|improve this answer
feedback

Subclipse provides support for Subversion within Eclipse.

link|improve this answer
feedback

anyedit moreunit checkstyle-cs jdepend quickrex propedit

link|improve this answer
feedback

The two plugins I find myself using again and again for Java development is QuickREx for regular expressions and the XPath-Developer for XPath, both from the same update site.

link|improve this answer
feedback

There is a plugin for dveloping C++ (CDT), and one for developing Perl (EPIC).

link|improve this answer
feedback

I have found the multi clipboard plugin very useful. The Aptana plugin, and their RadRails plugin have also helped me with my Ruby on Rails work.

link|improve this answer
show 1 more comment
feedback

I'd recommend Bastian Bergerhoff's QuickREx and XPath-Developer although the other plugins available from this update site screw up key bindings for the Java Development Tools and should be avoided IMHO.

link|improve this answer
feedback

JInto is a very useful plugin for Eclipse if you often need to edit .properties files in multiple languages. It spares you a bunch of copy/paste.

link|improve this answer
feedback

There's a new plug-in called nWire.

nWire brings an innovative approach to code exploration. The concept is to create a repository which holds all possible components (like classes, methods) and associations (like extensions, invocations), and provide easy tools for browsing, searching and visualizing that repository. The initial version supports Java static code analysis and I plan to expand it to popular frameworks (like Spring) and other programming languages.

It's much more than you get from Eclipse today:

  • All the information in one dynamic view
  • Quick search for everything, including methods and fields without opening a single dialog box
  • Visualize your architecture

It is currently in beta and it's available for download. Check it the demo on the nWire site.

link|improve this answer
show 2 more comments
feedback

ContextMenuPlugin makes the Windows Explorer context menu available when right-clicking on objects in navigator views, and on editor frames. It passes the clicked file or folder to the selected function.

This is especially valuable if you have useful Explorer extensions. I use this to invoke Tortoise CVS & SVN functions, to open a Command prompt in the corresponding directory, etc.

link|improve this answer
feedback

I can no longer live without the Extended VS Presentation plugin and the GotoFile plugin saves an awful lot of time for me.

link|improve this answer
show 1 more comment
feedback

Of course, for Perl coding you should try EPIC.

link|improve this answer
feedback

Little but useful for developers Eclipse Full Screen

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

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