2
By itself the eclipse already has the necessary for refactoring or you would indicate some tool to attach to the eclipse editor and use it more accurately?
2
By itself the eclipse already has the necessary for refactoring or you would indicate some tool to attach to the eclipse editor and use it more accurately?
1
Depending on what types of refactoring you want, the eclipse already comes embedded with the most basic refactoring:
See full documentation (in English)
There are also several plugins which can provide you greater flexibility in refactoring, however by default the eclipse already supports the functions of Refactoring standards.
Okay, thank you, if you know some tools and can indicate I’m here.
1
There are several levels of refactoring. If it’s just a variable name, it’s really worth using the features of Eclipse, now if you need more in-depth things I recommend reading the following book, which by the way, Google offers you for free :) and in Portuguese. Refactoring (Martin Fowler)
http://books.google.com/books?id=zPdb4QJKtkC&printsec=frontcover#v=onepage&q&f=false
1
Refactoring features for the Java language are sufficient for 99% of cases. In fact, in my experience, I never needed to use all of them.
However, depending on the technology you work with, plugins additional are required for both editing, self-completion and refactoring. Classic examples are plugins such as Jboss Tools, Spring Tool Suite and Google GWT, which add important features to each distributor’s technologies.
On the other hand, it is important to note that in many cases automatic refactoring is not sufficient. This happens a lot when we store settings and class names in Strings or files properties, XML, Json, etc. In this case, use the search in files by pressing Ctrl+H on the flap File Search
. Add a pinch of Regular Expressions, make the necessary replacements and you won’t have much trouble.
Browser other questions tagged java refactoring eclipse
You are not signed in. Login or sign up in order to post.
Faro, welcome to Stack Overflow in Portuguese. Your question is interesting, but a little broad. Is there a specific need you need? Refactoring works differently for each technology (language, file type, etc.).
– utluiz
At the moment just an attempt to start refactoring things.
– Faro