Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have lot of legacy models in MVC application and there are lot of redundant properties in model classes.

Using CTRL + SHIFT + G in Eclipse I can find references in Java code, but not in my views, which are mostly JSP or JSF pages. Therefore, I cannot safely refactor code.

The only option then is plain String search which is not comfortable and more error prone. Is there solution?

share|improve this question
I don't think eclipse has that capability. Netbeans has that. – Nambari Jan 7 '12 at 15:33
And whate about IntelliJ? – Xorty Jan 7 '12 at 15:39
Don't know. Never used it. – Nambari Jan 7 '12 at 15:41
Are you sure you have the full J(2)EE environment installed in your Eclipse instance? You need the proper JSP editor.. – stolsvik Jan 7 '12 at 15:52
Well I have Eclipse for Java EE development so I guess so. Does it work for you? – Xorty Jan 7 '12 at 15:59

1 Answer

up vote 2 down vote accepted

The JBoss Tools 3.3 plugin has this capability (and many more, such as tag and EL autocompletion). Note that it's currently still in development (beta) stage. You can get it in Eclipse Indigo (3.7.x) by Help > Install New Software and then entering the URL of this update site. In the list of available plugins components, just pick the "JBoss Web and Java EE Development" option (others are not required). No, this does not require a JBoss AS server as your project's target runtime.

enter image description here

share|improve this answer
Doesn't seem to work for me. I have @ManagedBean called "NumberGenerator" with "number" property (get,set) and it is used in JSF2 page like this: <h:outputText value="#{numberGenerator.number}". When I navigate to getNumber() getter and press CTRL+SHIFT+G (find references), none are found even though "number" property is used in EL expression. Can you post picture if it works for you or write little more about that? Thanks – Xorty Jan 8 '12 at 10:04
Okay I don't know what was wrong, I restared computer and it does work as expected. Thanks BalusC! – Xorty Jan 8 '12 at 11:33
I added a screenshot as evidence. – BalusC Jan 8 '12 at 11:35
Cool, thanks again. – Xorty Jan 8 '12 at 11:41
You're welcome. – BalusC Jan 9 '12 at 13:42
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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