Spring Boot

Spring Boot Starter Dependencies Explained

Posted On
Posted By admin

In this article, I will be covering what Spring Boot starter dependencies are and how they greatly simplify building a Spring application.

Problems with dependencies

Suppose you are building a Spring application from scratch. Prior to Spring Boot, you had to manually add all the necessary dependencies to your project. So if you use Maven, you had to add all the dependencies to your pom file. For this, you would need to know the group id and artifact id of the dependency. You would also need to know if a particular version of a dependency is compatible with other versions, etc. This often leads to mis-matched dependencies which cause errors in the application.

How Spring Boot dependencies address this issue

Spring Boot provides starter dependencies. A starter dependency is nothing but a special dependency that aggregates commonly used dependencies for a particular feature. For example, suppose you are building a Spring based web application. For this, you will need to add dependencies for spring-core, spring-web, jackson, etc. You will also need to get the right versions of all these dependencies.  On the other hand, if you use Spring Boot, it provides a single dependency called spring-boot-starter-web. You just need to add this. This will automatically add all the dependencies that are required for a building a web application via Spring.

Spring Boot starter dependencies

Some of the commonly known Spring Boot starters are as follows:

NameDescription
spring-boot-starter-webUsed to build a spring based web application. Can also be used to build a REST application
spring-boot-starter-data-jpaUsed to add Spring Data JPA support
spring-boot-starter-testUsed to add testing support like JUnit Mockito, etc
spring-boot-starter-thymeleafUsed to add Thymeleaf support

Advantages of Spring Boot Starters dependencies

Some of the advantages of using starter dependencies are as follows:

  • Starter dependencies speed up development
  • They reduce the number of dependencies required for an application
  • Developers do not need to know the names of the dependencies required for an application
  • Developers do not need to know the exact version of the dependencies to use

Conclusion

So in this article, we saw what Spring Boot starter dependencies are and how they make it very easy to build a Spring application.

 

If you like this post, please do let me know via the comments box below.  You can also connect with me via my Facebook Page or subscribe to my Youtube channel!

Related Post

leave a Comment