How to find out which maven dependency should be added in pom.xml

How to find the correct maven dependency when I have to use a class that I have never used

Unresolved className : -

enter image description here

+4
source share
2 answers

You can search through this interface https://search.maven.org/#advancedsearch%7Cgav . Many IDEs also display a GUI for this search feature and will be able to find an artifact for you.

+3
source

Another approach is a simple Google search , which quickly points to org.springframework / spring-web / 3.0.2.RELEASE .

org.springframework/spring-web, .

0

Source: https://habr.com/ru/post/1686706/


All Articles