问题
I completely uninstalled IntelliJ and have now reinstalled and imported my project. I imported using gradle and can see all of the files in my project present. However, when I open a file I can't find any declaration to go to by doing cmd + click. I have the Java 7 SDK setup, and I can't even go to the declaration of classes in my own project. Going to a Java core class like String
or List
doesn't work either. How can I enable the IDE to be able to find my classes?
I'm on OSX Yosemite, IntelliJ 2016.1.2 build 145.972.
回答1:
I had this same problem, and @AniaG's solution in the comments worked for me.
- Right-click
src
folder - Mark Directory as > Sources Root
回答2:
I faced the same issue and spent almost 15-16 tiring hours to clean, rebuild, invalidate-cache, upgrade Idea from 16.3 to 17.2, all in vain. We have a Maven managed project and the build used to be successful but just couldn't navigate between declaration/implementations as Idea couldn't see the files.
After endlessly trying to fix this, it finally dawned to me that it's the IDEA settings causing all the headache. This is what I did (Windows system):
- Exit IDE
- Recursively delete all .iml files from project directory del /s /q "C:\Dev\trunk\*.iml"
- Find and delete all .idea folders
- Delete contents of the caches, index, and LocalHistory folders under .IntelliJIdea2017.2\system
- Open Idea and import project ....
VOILAAAAAAAAAAAA...!! I hope this helps a poor soul in pain
回答3:
I had the same issue with idea and I was trying to open a maven project but the pom files where not identified. So right clicking on the pom file and choosing "add as maven project" did all the magic for me :)
回答4:
I was having similar issues in my IntelliJ mvn project. Pom.xml was not recognized. What worked for me was right click on the pom.xml and then add as a maven project.
回答5:
Your source folders where your Symbols are (Classes) are need to be configured as "Content Root".
- Open Project Structure: #;
- Click Modules
- You can configure your Content Root (Sources, Tests, Resources etc) for each module that you want to Navigate to.
Once done you should be able to navigate to your symbols.
回答6:
Had the same problem. But only on my own methods.
Just fixed it by invalidating cache: (File-> Invalidate Caches/Restart)
回答7:
If you see red circle on the icon of Java files, and got warning like "cannot find declaration to go to". Then you can do something below:
- Right click root folder of your project/module.
- Mark Directory As -> Excluded.
It works for me. in Windows 7, Intellij 2016.1.1
回答8:
I found this cannot find declaration to go to
problem once in my Maven project. The reason for this was just that one of the sub-projects in my project did not import as maven project correctly.
回答9:
In my case, I just updated my IntelliJ to Ultimate 2018.2 and all of my projects suddenly cannot find the implementations and the 'src' folders - it turned out IntelliJ removed the type of project (e.g. Maven).
What I did is:
Right click on the root project > Add Framework support... > Look for Maven (in my case) > Wait to re-index again > Then it worked again.
UPDATE 2:
I have always been encountering this when I update IntelliJ (2019.1.1 Ultimate Edition).
Just click the refresh button of Maven Tab and it should re-index your current project as Maven Project:
回答10:
IDEA may ignore some of your maven dependency files. The "External Libraries" node in your project structure might be empty or incomplete.
Go to:
- IntelliJ --> Preferences
- Search for Maven [on the left tab] -> Ignored Files
- See if there is any path on the right side that is checked(ignored) and uncheck that.
回答11:
Ensure that the directory which contains your compiled classes and libraries is marked as sources Root.
回答12:
Came across the same issue and in my case (Java project), I had to include all the dependent jars in the project's libraries section.
File -> Project Structure -> Libraries
I had to add my project dependent jars in the above section (for example; project/web/lib/). After doing so, all resolved fine. I hope this will help someone.
回答13:
Right-click on your src folder and choose the option "mark directory as" --"Source root" and along with it again right-click on your project and choose "reformat code"(under this choose cleanup code too) and that will work fine.
回答14:
In my case I was using a gradle project with subprojects. The reason IntelliJ couldn't find declarations was that the subprojects were not built.
After investigating why subprojects were not built, I found out that using "auto-import" was breaking the subprojects.
After importing the project from build.gradle
without auto-import, it worked for me.
回答15:
For what its worth, in Pycharm it is: Right click on the root folder->Mark Directory as-> Sources Root
回答16:
Same Problem for Python Project!!!
I tried to make a clean new intellij project and updated everything. Tried different virtualenvs but nothing worked out.
UNTIL I uninstalled the Python Plugin + Restart IntelliJ + Intall Python Plugin + Restart IntelliJ again. I'm not sure if this is a "real" solution, but it solved my issue.
Maybe you can try something familar for Java "Plugin"/JDK?
回答17:
In my case, none of the above helped. Only upgrade of Intellij from 2017.3 to 2018.2 helped.
Do not try 2018.1 as it had a bug wherein the Find files popup would not come up.
回答18:
Most of the times there has been a problem with building the cache of the IDE, or something related.
Most probably, File -> Invalidate Caches / Restart
, will resolve this problem, just let the IDE finalize it's caching.
回答19:
For someone whom the above solution didn't worked.
For gradle,
File -> Project Structure
Click on Project Under Project Settings
Update Project Language level as Modules, private methods in interfaces etc.
Click OK and Import Gradle Settings
来源:https://stackoverflow.com/questions/37282285/intellij-cannot-find-any-declarations