I have installed JDK, Maven, and STS before starting this project. Please refer below links to know how to install these technologies.
How to install JDK.
How to install Maven.
How to install STS.
This tutorial shows you how to create a simple project in Spring 3 using Maven.
First generate a project structure using Maven. Type below code in command prompt. Here name...
How to Install STS in Windows
By Anshad June 20, 2018
Download STS from https://spring.io/tools/sts/all
I have downloaded the 64bit version. Then Unzip the downloaded zip file to any folder.
Then start STS by double clicking on STS exe file in the unzipped folder.
Then I got an error message like.
Then I checked the log file specified in error message. The log file shown error message like org.eclipse.e4.core.di.InjectionException:...
How to Install Maven in Windows
By Anshad June 19, 2018
First, install JDK. Click here to know how to install JDK.
Then visit Maven Official Site and download apache-maven-3.5.3-bin.zip.
Then unzip this file to any folder.
Goto Control panel -> System -> Advanced System Settings -> Environment Variables. Then add M2_HOME and MAVEN_HOME. Give value of both as the path of the unzipped folder.
Then update PATH...
How to install JDK in Windows.
By Anshad June 12, 2018
Download JDK 1.8
Then install JDK by double clicking on the downloaded file.
Select Development Tools and click Next.
Then JDK and JRE will install in C:\Program Files\Java.
Then test whether java installed properly by typing 'java -version' in command prompt. Then it's shown version correctly for me. Then again type 'javac -version'. Then I got an error like 'javac...