vote up 5 vote down star
1

Java Reflection provides a mechanism to introspect an Object at runtime. No second thoughts, this is a great feature, but it breaks all the Refactoring conventions!

There is no easy way (other than 'File Search') even in modern IDE's to know which attribute is referenced and where. This makes Refactorings much more complex(tiresome!) and error prone.

To be frank, its just not the Reflection API, Hibernate mapping files (hbm.xml), JSP files all refer to the attributes as String and when you refactor your attribute name then you have to manually change in all these places.

Worse, the changes in Hibernate mapping file or JSP files results in Runtime errors.

I am interested in knowing how other Programmers handle this in Java? Are there some tools? I use Eclipse/IBM RAD as main development platform. Normally we use a Constant to define the attribute and use it whenever possible but its not always possible.

I would also be interested how other languages handle this!

flag
1  
IntelliJ has pretty good hooks into JSPs, Spring and Hibernate config files these days, all of which are 'refactoring aware'. I'm not an Eclipse user but I thought it had something similar too. – Nick Holt Jun 22 at 16:03
also netbeans has some smart refactoring tools (spring, web.xml, etc) – dfa Jun 22 at 16:14
I think Eclipse can refactor across Hibernate files too. – Tom Hawtin - tackline Jun 22 at 20:42
@Tom: AFAIK Eclipse by itself can't do and with additional plugin Hibernate Tools or Spring Tools it was not possible other than String search. – lud0h Jun 23 at 8:17

6 Answers

vote up 6 vote down check

Java reflection causes many of the same problems you get with dynamically typed languages such as Python and Ruby. In fact, one way to think about dynamically typed languages is that everything is called using reflection, and the languages just provide a nice, clean syntax for reflection.

And yes, with dynamically typed languages (or heavy uses of reflection), refactoring is hard. You don't get the nice Eclipse refactoring capabilities. Instead, grep becomes your friend.

From my experience, the best thing you can do is build yourself a good safety net of unit tests. That way, if you break some dynamic code during refactoring, at least you'll catch it quickly when you run the tests.

If you're doing lots of statically typed code, you're in big trouble if you don't have a good base of unit tests. If you're doing lots of dynamically typed code (including code with lots of reflection), you don't have any hope of being successful without a good base of unit tests.

link|flag
Actually, the first IDE that implemented refactoring was Smalltalk, which is quite dynamic. AFAIK the refactoring tool did the analysis by monitoring the code as it ran (usually through unit tests) and seeing which paths are used, which methods are called, etc. It's possible to refactor dynamic code, but it is hard to implement and I believe that is the reason it isn't widely available in IDE's. – gooli Jun 22 at 21:34
vote up 0 vote down

You might be interested in using IntelliJ IDEA, which will also search for refactored class names in comments and string constants.

link|flag
netbeans (and problably others) too – dfa Jun 22 at 16:15
Eclipse (and presumably netbeans) can do that too - but it's still not guaranteed to work, since it will only catch fully qualified class names – Michael Borgwardt Jun 22 at 16:17
vote up 0 vote down

Modern IDE's have the feature that when renaming a class, they will search for the fully qualified name in, for example, your xml files to try and rename any references you might have in those. Don't think it solves the problem - very often you don't absolutely reference class names.

Also, that is why particular care and consideration must be exercised before you use it in your own code.

But this problem with reflection is why using annotations is becoming more popular. The problem is reduced when using annotations.

But let me say, as the previous post rightly points out, if you don't have a good safety net of unit tests, any kind of refactoring, whether you use a lot of reflection or not, is dangerous.

link|flag
How does annotation solve the problem in such scenarios? Can you give an example? Thx. – lud0h Jun 22 at 20:16
It's in terms of persistence for example. If I use annotations to specify that a class is persistent, for example, and I rename that class, the annotation will stay and it will still be persistent. I will not have to go and find all the instances where the class is references in the mapping files and change that as well. – Michael Wiles Jun 23 at 9:43
vote up 0 vote down

Well, it's another opportunity for IDE makes to sell expensive premium versions which will recognize and refactor class names used in specific configuration files.

Alternatively, such recurring cases can be handled by a test suite that performs sanity checking on such files, i.e. checks that all referred classes and methods exist. Such are specific to one file format, but are often relatively easy to write and can then be used to check all files of that format.

But there is no general solution for the direct, "manual" use of the reflection API - which is why it's generally discouraged.

link|flag
The problem is not just with the Reflection API. The config files like in Hibernate or JSP are compile time bound and the tools doesn't capture them effectively. – lud0h Jun 22 at 20:18
Since those files have a well-defined syntax, it is at least possible (and not too difficult). – Michael Borgwardt Jun 22 at 20:40
vote up 0 vote down

As an aside, Reflection also causes issues if you want to protect your code via obfuscation. Typical obfuscation tools now require you to maintain a list of all files that you do not want obfuscated so that reflection from all the XML config files works properly.

That said, A J2EE version of Eclipse IDE along with suitable plugins for the major frameworks like Hibernate, Spring etc will do a fairly good job of handling refactoring. Unit tests will reduce the testing cycle, but the concern is that sometimes the unit tests also depend on some XML configuration forcing you to use reflection. So it is possible to break unit tests along with your code while refactoring.

link|flag
vote up 0 vote down

Refactoring could be improved by introducing more "literals" in the language. E.g. imho .class literal are a great way to ensure compile-time safety of certain models. However the important thing to say here is that, sometimes, I want to lose compile-time safety. Strings are the most simple yet powerful way to express a loosely coupled contract between two layers since you can manipulate or match them against a regular expression, etc

The real problem of reflection is the verbose use of the API. The is the major cost for flexibility.

PS

Project coin could introduce somewhere in the future some new language construct to enhance this area.

link|flag

Your Answer

Get an OpenID
or

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