Spring Boot uses Spring IO implicitly?

I want to get all the benefits of Spring IO and Spring Boot. I realized that Spring IO is more than Spring Boot. I realized that the main problem of Spring IO is integration, resolving conflicts between many frameworks and components with the Spring platform, and the main problem with Spring Boot is to create an easier and faster way to use Spring, but I really want to know: when I use only Spring Boot, in this entire pom hierarchy, will you use Spring IO at some level of this legacy pom structure?

If the answer is no, then what is the best way to use both initiatives? Both of them recommend using parent pom or importing pom (using the bom concept) as dependecy-management. Should I use it as a parent and another as a bom (import as dependency management)?

+3
source share
1 answer

As mentioned in the comments, Spring IO and Spring Boot have different focuses, but they combine perfectly.

In fact, Spring IO bom inherits from Spring Boot one, so it is enough that Spring IO as a parent, and you can have all the advantages of both (for example, mvn are reasonable defaults). See my other answer for more details.

The only β€œdrawback” to using Spring IO is that it may be slightly behind the latest version of Spring Boot, but if you are similar to it, you can enjoy more dependent dependencies.

+1
source

All Articles