Based on Spring initializr https://start.spring.io/ and picked the DB features: h2, mysql, flyway, jdbc and jpa.
settings.xml pom.xml parent dependency management plugins
@SpringBootApplication, @SpringBootTest, @Autowired, @Component application.properties, application-test.properties
show domain (User) show migrations V1 show UserRepository#findAll show UserRepository#save show UserRepositoryTest
implement UserRepository#count and test implement UserRepository#deleteById and test implement UserRepository#findByUsernameStartingWith (projections) and test
Add email attribute
Create crudRepository