Back to course

Spring Boot Project Structure

Spring Boot 0 to Hero: The Complete Java Backend Masterclass

Where do files go?

A typical structure looks like this:

  • src/main/java: Source code.
  • src/main/resources: Config files (application.properties).
  • src/test/java: Unit and Integration tests.
  • pom.xml: Maven dependencies.