October 2018
Intermediate to advanced
982 pages
23h 29m
English
To run it through the Java file, we need to compile and package it, and then we can run the project with the Java command line. To compile and package it, we can use the pretty standard Maven command like this:
mvn clean install
After the project is compiled and packaged as a Fat-JAR, we can execute the JAR file, go to the target folder and check the files from this folder, probably the result will look like this:

We have two main files in our target folder, the cms-0.0.1-SNAPSHOT.jar and the cms-0.0.1-SNAPSHOT.jar.original, the file with the .original extension is not executable. It is the original artifact resulting ...
Read now
Unlock full access