March 2018
Intermediate to advanced
324 pages
8h 30m
English
As you start browsing the project, you realise that the application is not very complex. In fact, the project contains roughly a dozen Java classes and, as you start opening and looking at the files, you notice that none of them is longer than one hundred lines. That is pretty good, the codebase is small so you will be able to develop new features in no time.
Provided that this is a Gradle project, you quickly open the build.gradle file to acknowledge the frameworks and libraries being used within the project:
apply plugin: 'java'apply plugin: 'org.springframework.boot'sourceCompatibility = 1.8targetCompatibility = 1.8bootRepackage.executable = truerepositories { mavenLocal() mavenCentral()}dependencies { compile 'org.springframework.boot:spring-boot-starter-actuator' ...Read now
Unlock full access