notes/pl/java/libfws/spring/boot/custom-starter.txt
Ihar Hancharenka f4f3013310 m
2024-05-11 09:13:16 +03:00

20 строки
870 B
Plaintext

2024
https://habr.com/ru/companies/ru_mts/articles/811693/
DanVega - How to create your own custom Spring Boot Starter 0:00 of 26:54
https://www.youtube.com/watch?v=9m1bC57oWrc
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.