Skip to content

Instantly share code, notes, and snippets.

@aclement
aclement / SpringBootStarterTips.md
Last active June 22, 2018 18:00
Starter Guidelines...v0.0.1

Work in progess...

Be on the latest Spring Boot

Don't use boot for a package name that contains auto-config, instead used autoconfigure

Unusual to prefix classes with SpringBoot

Try to avoid using enabling flags to control bean creation. If you need to control whether a bean needs to be created use an additional or different kind of condition that can be detected.