notes/pl/java/libfws/spring/boot/custom-starter.txt
Ihar Hancharenka b179e012f2 m
2023-08-20 16:12:51 +03:00

16 строки
689 B
Plaintext

2020
https://www.baeldung.com/spring-boot-custom-starter
2019
https://reflectoring.io/spring-boot-starter/
https://github.com/thombergs/code-examples/tree/master/spring-boot/starter
2017
JavaJam - Tolkachev, Gorelikov - Why write a custom starter
https://www.youtube.com/watch?v=CNVlhnO4UzE
A full Spring Boot starter for a library may contain the following components:
* The autoconfigure module that contains the auto-configuration code.
* The starter module that provides a dependency to the autoconfigure module as well
as the library and any additional dependencies that are typically useful.
In a nutchell, addding the starter should be enought to start using the library.