Structure of a Spring Application
Learn the basic structure of a Spring application.
We'll cover the following...
Let’s look at the basic structure of a Spring application and interpret its individual files.
Press + to interact
|-- mvn|-- mvnw|-- mvnw.cmd|-- pom.xml|-- src| |-- main| | |-- java| | | `-- com| | | `-- tamingthymeleaf| | | `-- application`-- TamingThymeleafApplication.java| | `-- resources`-- application.properties| | `-- templates| `-- test| `-- java| `-- com| `-- tamingthymeleaf| `-- application`-- TamingThymeleafApplicationTests.java
Description of the files
- The
.mvn
folder is a hidden folder by default. It allows Maven to be run without being installed. - The Maven project file
pom.xml
is the core