Is there a guide on how to create a Spring Boot starter from a Vaadin application?
Background is that I have an application that can serve as the base for other applications and would like to use the starter mechanism provided by Spring Boot to enable this.
I’ve had a look around but have not been able to find any examples.
I have made couple. Here is one “development time helper” I published recently:
I didn’t use @EnableVaadin, but dynamically registered views. With the current setup it would probably be enough (as the path is hardcoded). Had some ideas that I could make it drop the views to the main app navigation instead (which was proabably a bad idea)…