Home > OS >  How to find Spring dependencies after project is initialized?
How to find Spring dependencies after project is initialized?

Time:07-20

I'm new to Spring world. I am following Spring Microservices in Action, where they recommend to use Spring Intializr to get Spring dependencies. However, post that whenever we need to add new dependencies, maven dependencies are provided in book. What would professionals do in such situation? How will new dependencies be found and added to the pom.xml?

CodePudding user response:

You can find them in public repositories like enter image description here

And take a look at the pom.xml file. You can see the dependency:

enter image description here

There are absolutely multiple other ways like finding and adding the dependency in your IDE (IntelliJ, Eclipse ...) and ...

  • Related