Eclipse -click Hyperlink Not Working

前端 未结 17 921
情深已故
情深已故 2020-12-28 17:08

I\'m running Eclipse Kepler, and for some reason, the ctrl-click hyperlink feature isn\'t working in one particular workspace.

I\'ve looked at this question, and the

相关标签:
17条回答
  • 2020-12-28 17:44

    I had the same problems, Just deleted .classpath file from all project . then it started working :)

    0 讨论(0)
  • 2020-12-28 17:45
    1. Close the class you are working on.
    2. Press "Control+Shift+T"
    3. Search with class name
    4. Open the class Now "Ctrl+Click" should work
    0 讨论(0)
  • 2020-12-28 17:45

    I had the same issue, and solved it the following way. My issue came because I imported a project from Git, which wasn't having the project file. So Eclipse was not recognizing the project as a java one. Ctrl+click was not working and so there was the "F3" issue.

    Solution:(not a direct one. but solved my issue)

    • import -> projects from git -> from URI -> select the new project wizard
    • so an empty project with src folder will be created.
    • then copy all the src files in to the folder manually.
    0 讨论(0)
  • 2020-12-28 17:47

    Try deleting .metadata folder from your source and re-import all maven project in your eclipse.

    0 讨论(0)
  • 2020-12-28 17:48

    The src folder needs to be in the Java Build path. I had a similar issue in a non-Maven project and resolved it by adding Project/src folder in (Project Properties | Java Build Path | Source).

    0 讨论(0)
  • 2020-12-28 17:50

    Check your projects are not closed in eclipse.

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