How to get documentation search for non-core libraries in Intellij?

I have a path to the JDK documentation so that I can press Cntrl J (osx) to get a "quick documentation search" for the main java libraries. If I try to use non-core libraries like Spring or Hibernate, I only get the method signature. How do I get documentation for these libraries too?

+3
source share
2 answers

Attach the documentation directory or specify an external documentation URL or attach sources.

+2
source

If you are using Maven, you can use the Maven target:

mvn dependency:resolve -Dclassifier=javadoc.

. classifier javadocs. maven, ~/.m2.

IntelliJ javadoc Spring, Hibernate, , .

0

All Articles