A. Java development Environment Building
today just to the company, let me first build the development environment, long time no use to forget, Baidu on Baidu, finally to build. I 'm the win7 system, take my word for it. Steps
Install (Install related program)
put it on first. MyEclipse , this is nothing as long as the next step on the line.
followed by JDK and the Tomcat also follow the prompts. I am installed by default on : C:\Program Files (x86) \java\jdk1.6.0_10
B. Configuring the Environment
After the installation is configured, the configuration is as follows:
Right - click Desktop Icon "Computer"--Select "Properties"--Select "Advanced system settings " appears System Properties interface,
Select " Environment Variables " button to go to the Environment variables page , as follows shown in the figure:
start with JDK environment variables are configured in system variables :
First : New System Variable java_home and the CLASSPATH ( must be capitalized )
Variable name : Java_home Variable Value :C:\Program Files (x86) \java\jdk1.6.0_10
Variable name : CLASSPATH Variable Value :.
where the variable value is your own JDK install directory, can't forget!! As shown in the following:
Final Configuration Path: Find Path property, or click the "Edit" button if you have something
Variable name :p ath Variable Value : C:\Program Files (x86) \java\jdk1.6.0_10\bin
will be JDK The address is glued to the inside, with the previous value ";" separated.
If not Path property, create a new one directly.
this is Java environment configuration, open after configuration MyEclipse, it will be done by itself Java the configuration of the environment.
you can test to see if the configuration is successful, DOS Command Window, enter Javac, If the following information appears, then the configuration was successful!
C.myeclipse in the configuration Tomcat with the JDK can be .
D.SVN Integrated
will beSVNunder the compression package featuresand the Pluginstwo folders copied toMyEclipseunder installation packageDropinsfolder. restartMyeclispe, you can see the following
Description SVN Integration Success!!
completing the above steps basically Java the environment has been built.
Java environment variable Configuration