October 2018
Intermediate to advanced
590 pages
15h 5m
English
Once Spring Initializr finishes the generation of the skeleton of the backend of our TaskAgile application, we can see the following structure:
.├── .gitignore├── .mvn│ └── wrapper│ ├── maven-wrapper.jar│ └── maven-wrapper.properties├── mvnw├── mvnw.cmd├── pom.xml└── src ├── main │ ├── java │ │ └── com │ │ └── taskagile │ │ └── TaskAgileApplication.java │ └── resources │ ├── application.properties │ ├── static │ └── templates └── test └── java └── com └── taskagile └── TaskAgileApplicationTests.java
Let's go through the items in this tree. First of all, the .mvn folder, and the mvnw and mvnw.cmd files, are for Maven Wrapper, which enables you to use a project-specific Maven version, and, when there is no Maven of that version ...
Read now
Unlock full access