Spring Boot best practices summary

This document is an extension of the Software engineering best practices summary, dedicated to Spring Boot-specific issues.

General

Object creation

  • Don’t use Field Injection, pass all dependencies in the class constructor
  • Do not add the @Autowired annotation on constructors – it is now obsolete