Installation of 1.JDK
First download the JDK, this from the Sun Company's official website can be downloaded, according to their own system choose 64 or 32 bit, the installation process is next all the way to the end. After the installation is complete, the environment variables will be configured.
———————————————————————————————————————————————————
1.1 New variable Name: Java_home variable Value: E:\Java\jdk1.6.0_43 (This is my JDK installation path)
1.2 Edit variable Name: Path at the back add:%java_home%\bin;%java_home%\jre\bin
1.3 New variable Name: CLASSPATH variable value:.; %java_home%\lib;%java_home%\lib\dt.jar;%java_home%\lib\tools.jar
(Note: Do not add ";" when setting the end of a variable)
———————————————————————————————————————————————————
After the setup is done, of course we need to test, open "run"--input "CMD"--on the command line input: Java, and then enter; input Javac, enter, input java-version, return, if the following three screen, then the JDK configuration is successful, Otherwise, you need to check the configuration of the environment variables.
Installation of 2.Eclipse
: Http://www.eclipse.org/downloads/version selected by itself
When we're done, we'll start eclipse, set up a working path, or directly default. We open window-->preference input JRE, install
At this point we can build a Java project casually and then write a HelloWorld to test it correctly.
Installation of 3.TOMCAT8
Tomcat I use the version is 8, you can go to Apache official online download, http://tomcat.apache.org, download direct decompression on the line
5.Maven installation Configuration 5.1 maven configuration environment variables
Download maven, is a package: apache-maven-3.2.1, I use the version is 3.2.1, extract to a path, and then configure the environment variables:
——————————————————————————————————————————————————
5.1 New variable name: Maven_home variable Value: D:\server\apache-maven-3.2.1 (This is my MAVEN path)
5.2 Edit Variable Name: Path is preceded by:%maven_home%\bin; (Note that there is a ";" in the end.) As a delimiter)
——————————————————————————————————————————————————
When you are finished, enter: mvn-version in the command line to see if there are any of the following, if any, to indicate a successful configuration.
ECLIPSE+TOMCAT+MAVEN+SVN Project Complete Environment construction