notes/pl/java/libfws/spring/boot/custom-starter.txt
Ihar Hancharenka 45dab40c01 m
2024-02-07 15:50:51 +03:00

19 строки
816 B
Plaintext

2024
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.