From the course: Spring Boot 2.0 Essential Training

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

Building Spring Boot starters

Building Spring Boot starters

From the course: Spring Boot 2.0 Essential Training

Start my 1-month free trial

Building Spring Boot starters

- [Instructor] The final topic for this course is all about creating your own Spring Boot starter, and really doing so is a multi-step process. Now, once you've executed it once or twice, it becomes almost like second nature. And you actually find yourself wanting to create more starters once you realize the power within them, especially when dealing with cross-cutting concerns across an organization. So the first thing you might ask is why you would want to create your own starter? And often the answer boils down to the same reasons that we would implement aspects in traditional Java applications. And that has to do with those cross-cutting concerns. So of course, we'll have some set of common code. We'll also have some sort of common configuration which tends to be the default configuration for that code. By creating this as a Spring Boot starter for that code as well as the configuration, we can improve the ease of use.…

Contents