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!
