Ctrl+click doesn't work in Eclipse Juno

后端 未结 23 2081
傲寒
傲寒 2020-12-05 13:50

For every version of Eclipse I\'ve used prior to Juno, ctrl+click would find the declaration of a variable/class/method. It was an extremely useful feature when d

相关标签:
23条回答
  • 2020-12-05 14:04

    I'm having the same issue in Eclipse Luna in my Ubuntu VM, but I just tried to Ctrl+click on a method and it worked (even though my mouse cursor didn't change to a pointer).

    0 讨论(0)
  • 2020-12-05 14:05

    I had the exact same issue while working on a GIT based project. I was able to resolve by changing the way i was importing the project in the workspace.

    Wrong way : Import project to workspace from GIT perspective , like right click on the GIT URL and selecting the option import which was not recognizing the project facets.

    Right way (which resolved my issue): clone the project in GIT perspective , change to JEE Perspective , then import from file > import > Existing Maven Project .

    0 讨论(0)
  • 2020-12-05 14:09

    This bug is really annoying..

    The only thing that did the trick for me is deleting the project from the workspace, then deleting the .project and .classpath files and then re import it back to the workspace.

    Hope it will help others.

    0 讨论(0)
  • 2020-12-05 14:10

    I encounter this problem when creating workspace/project in eclipse 3.7.2. Then I open it using Kepler (4.3). So simply open the project by the eclipse version you created it (3.7.2 in my case) solves the problem. Hope it helps.

    0 讨论(0)
  • 2020-12-05 14:10

    If the project is a Maven project, make sure that the java class you have open is inside src/main/java.

    0 讨论(0)
  • 2020-12-05 14:12

    I had the same issue with PDT in eclipse, I fixed it by removing my include build paths and adding them again.

    0 讨论(0)
提交回复
热议问题