Java refactoring tools - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T21:16:05Z http://stackoverflow.com/feeds/question/708164 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/708164/java-refactoring-tools 3 Java refactoring tools Don 2009-04-02T03:23:38Z 2009-04-02T07:35:01Z <p>Hi,</p> <p>I make very heavy use of the Java code refactoring tools provided by Eclipse (extract interface, rename method, etc.). Does anyone knows of other similar tools (preferably Eclipse plugins) that can perform Java code refactorings that are not available in Eclipse by default, or that can perform the same refactorings better?</p> <p>I'm aware of various Eclipse plugins that can identify code in need of refactoring (e.g. FindBugs, UCDetector), but I'm looking for tools that can actually do the refactoring.</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/708164/java-refactoring-tools/708173#708173 0 Answer by aaronls for Java refactoring tools aaronls 2009-04-02T03:29:11Z 2009-04-02T03:29:11Z <p>See this <a href="http://stackoverflow.com/questions/615334/a-tool-like-resharper-but-for-java">question</a></p> http://stackoverflow.com/questions/708164/java-refactoring-tools/708181#708181 1 Answer by nevster for Java refactoring tools nevster 2009-04-02T03:32:50Z 2009-04-02T03:32:50Z <p>Well you can try out IntelliJ for free to get a feel for everything it can do. It satisfies your "not available in Eclipse" and "perform the same refactorings better" but obviously not the "preferably Eclipse plugins" :)</p> <p>Here's an overview : <a href="http://www.jetbrains.com/idea/features/refactoring.html" rel="nofollow">http://www.jetbrains.com/idea/features/refactoring.html</a></p> http://stackoverflow.com/questions/708164/java-refactoring-tools/708197#708197 0 Answer by Varkhan for Java refactoring tools Varkhan 2009-04-02T03:40:53Z 2009-04-02T03:40:53Z <p>I agree with <em>nevster</em> that IntelliJ is much more complete and subtle in its set of refactoring tools. I have been using it for quite a while, and, with automatic code generation (which is essentially the same thing), an extensive refactoring toolkint is the feature that makes it really stand out compared to Eclipse.</p> <p>However, I would not advise so readily moving to IntelliJ, for a number of reasons that can get really irking over time:</p> <ul> <li>it's not free (I would even say it is expensive)</li> <li>it has a HUGE memory footprint (half a Gb? wtf?) and is slow to start</li> <li>it does not interact well with X-based window managers (to the point of silent data corruption, in some extreme cases)</li> </ul> <p>So you would have to balance the advantages of a better (admittedly, outstandingly so) refactoring toolkit against the weight (literally) of IntelliJ.</p> http://stackoverflow.com/questions/708164/java-refactoring-tools/708265#708265 2 Answer by AaronG for Java refactoring tools AaronG 2009-04-02T04:09:58Z 2009-04-02T04:09:58Z <p>RefactorIT... Is available as standalone product and Eclipse plugin. Only con is that for non-open source projects you are limited to 50 classes (but can get around that by splitting into multiple Eclipse projects, and using dependencies). RefactorIT also has code generation tools, like 'Encapsulate Field', where you select (multiple) fields in the package view (wherever) and it automatically creates getters and/or setters, also same thing for Constructors... Great tool!</p>