This is an introduction for the service development.
Java JDK Installation
- Install Java JDK 8: DownLoad
- Set the JAVA_HOME system environment variable from "Start -> Control Panel -> System and Security -> System -> Advanced system settings".
- Click the Environment Variables button in the System Properties dialog box
- Click New under system variable and enter JAVA_HOME as the variable name and "C:\Program Files\Java\jdk1.8.0_45" as the variable value
- In the same dialog box append %JAVA_HOME%\bin to the Path environment variable
- You can verify the setup by opening a command window and run java -version.
JavaEnvironment.png
Maven Setup
- Before running maven you will need to install the Java JDK
- Download the latest Maven Zip file to your local system: DownLoad
-
Extract the contents of the zip file to your local drive
Maven - Click the Environment Variables button in the System Properties dialog box
- Click New under system variable and enter M2_HOME as the variable name and “C:\Workspace\apache-maven-3.3.3” as the variable value
- In the same dialog box append %M2_HOME%\bin to the Path environment variable
- You can verify the setup by opening a command window and run mvn -version
- Your output should be similar to the picture shown below
Paste_Image.png