MYECLIPSE2015+TOMCAT+MAVEN+SVN Project Environment Construction

Source: Internet
Author: User

Prerequisites:

1, Download MyEclipse 2015 (note: MyEclipse belongs to the commercial version, need to crack. )

present: MyEclipse

build id:13.0.0-20140711

software: http://pan.baidu.com/s/1pjut7iz   Password: l88y

crack: (address invalid, please contact me)

2. Download JDK

JDK: http://www.oracle.com/technetwork/java/javase/downloads/index.html

3. Download Tomcat

Tomcat Download: http://tomcat.apache.org/

4. Download maven

maven Downloads: http://maven.apache.org/

5. SVN download

SVN: http://tortoisesvn.net/downloads.html

First step: Install the JDK

1, first download the JDK program installation

Graphics installation Steps (omitted)

Recommended path selection: Default path

2. Configure Environment variables

1. Turn on computer properties

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M00/6C/9E/wKiom1VNw6uTFZmVAACPlqPTCbY288.jpg "title=" QQ picture 20150509162107.png "alt=" Wkiom1vnw6utfzmvaacplqptcby288.jpg "/>

2. Select: Windows XP System Select "Environment variable" (Ignore 2 points) Windows 8 (I am here Windows 8 System)

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M02/6C/9E/wKiom1VNw_SBHrJlAAJVs34kgWo658.jpg "title=" QQ picture 20150509162302.png "alt=" Wkiom1vnw_sbhrjlaajvs34kgwo658.jpg "/>

3. Select Environment variables

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M00/6C/9E/wKiom1VNxCLDJuQQAAE2yomx-WM878.jpg "title=" QQ picture 20150509162346.png "alt=" Wkiom1vnxcldjuqqaae2yomx-wm878.jpg "/>

    4, configure add

        • new variable name: java_home   variable Value: C:\Program files\java\jdk1.8.0_45 (This is the path where the JDK was just installed)

        • new variable name: classpath variable value:.; %java_home%\lib;%java_home%\lib\dt.jar;%java_home%\lib\tools.jar

        • path   in the back;%java_ Home%\bin;%java_home%\jre\bin


5, the test (using the Administrator account) shortcut key Windows+r appear to run, enter the cmd command interface. The input java–version appears below the picture (proves successful, otherwise fails)

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M01/6C/99/wKioL1VNxceg_y38AAEbmMyz4rw198.jpg "title=" QQ picture 20150509162440.png "alt=" Wkiol1vnxceg_y38aaebmmyz4rw198.jpg "/>

Step Two: Install MyEclipse 2015

1. Installation process (omitted)

2. hack (include tutorial in Hack tool)


Step three: MyEclipse configuring Tomcat

1, MyEclipse configuration tomcat with 2013, 2014 different window->preference interface cannot find Tomcat option

2, how to configure: First into the window->preference ()

Note: Download tomcat and unzip it. To enter the operation.

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M02/6C/99/wKioL1VNxiKRTigMAAH5LCwngrM284.jpg "title=" QQ picture 20150509162610.png "alt=" Wkiol1vnxikrtigmaah5lcwngrm284.jpg "/>

3. Test tomcat for normal operation

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M01/6C/99/wKioL1VNxpfhYdRMAAGCfHH5Q9Q704.jpg "title=" QQ picture 20150509162806.png "alt=" Wkiol1vnxpfhydrmaagcfhh5q9q704.jpg "/>

Step three: MyEclipse configuring maven

1. Download maven package and unzip it and put it to the specified path.

2. Configure environment variables (configure MAVEN the same as configuring the JDK environment variable)

  • New variable name:maven_home Variable Value: D:\server\apache-maven-3.2.1(This is my MAVEN path)

  • Edit variable name:Path at the front Plus:;%maven_home%\bin; (Note that the last one is ";" As a delimiter)

3. Test maven (using admin account)

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M02/6C/99/wKioL1VNxsjDvJ_BAAElC27UZRM936.jpg "title=" QQ picture 20150509162857.png "alt=" Wkiol1vnxsjdvj_baaelc27uzrm936.jpg "/>

      • maven also has an important configuration that is the path configuration of the Data warehouse.

      • find maven installation path and go to conf--> Open settings.xml

      • find the localrepository tag, This is commented out, the comment is dismissed, and a path is configured: d:\maven\mavenrepository\maven_jar  

      • role: This will be the case for MAVEN management to download the jar package under this path

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M00/6C/99/wKioL1VNxv7xKZSuAAF-qWP9wHc531.jpg "title=" QQ picture 20150509162951.png "alt=" Wkiol1vnxv7xkzsuaaf-qwp9whc531.jpg "/>

Fourth step: integrating maven in MyEclipse

1, how to configure Maven; First enter window->preference

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M01/6C/99/wKioL1VNxy3C5mpxAAJ7s1B3rXA419.jpg "title=" QQ picture 20150509163038.png "alt=" Wkiol1vnxy3c5mpxaaj7s1b3rxa419.jpg "/>

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M01/6C/9E/wKiom1VNxdmRfzwMAAICzZD34oI006.jpg "title=" QQ picture 20150509163110.png "alt=" Wkiom1vnxdmrfzwmaaiczzd34oi006.jpg "/>

2. Test if MAVEN is installed successfully

Create a MAVEN project: File-->new-->other-->myeclipse-->maven4myeclipse-->maven project, you can already build MAVEN projects.

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M00/6C/99/wKioL1VNx3fRinzUAAB1gVyxhcc813.jpg "title=" QQ picture 20150509163151.png "alt=" Wkiol1vnx3frinzuaab1gvyxhcc813.jpg "/>

Fifth step: SVN install and configure SVN plugin

1, install SVN software (step omitted)

2, myeclipse install SVN plugin (here is online installation; the rest does not mean there are many tutorials online)

First enter Help->install from Site ...

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M01/6C/99/wKioL1VNx5ziqk4mAAF-rFZWmNg900.jpg "title=" QQ picture 20150509163224.png "alt=" Wkiol1vnx5ziqk4maaf-rfzwmng900.jpg "/>

Online installation Address: http://subclipse.tigris.org/update_1.8.x/

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M01/6C/9E/wKiom1VNxkej4cYGAAIYqYkOrc0089.jpg "title=" QQ picture 20150509163259.png "alt=" Wkiom1vnxkej4cygaaiyqykorc0089.jpg "/>

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M02/6C/99/wKioL1VNx9rCcPpjAAHwhY8pSHk989.jpg "title=" QQ picture 20150509163323.png "alt=" Wkiol1vnx9rccppjaahwhy8pshk989.jpg "/>

Wait for the download ... ..... ... ..... ... ..... ..... ..... ..... ..... ..... ..... .... ..... ............... (download speed depends on your Internet connection)

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M02/6C/9E/wKiom1VNxo_Adv4_AAHSt6tUHyE842.jpg "title=" QQ picture 20150509163407.png "alt=" Wkiom1vnxo_adv4_aahst6tuhye842.jpg "/>

Note: There will be errors in this step, try again, if not, we recommend that you use an offline installation.

650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M02/6C/99/wKioL1VNyCmjRHFTAAIIinph6ok287.jpg "title=" QQ picture 20150509163443.png "alt=" Wkiol1vnycmjrhftaaiiinph6ok287.jpg "/>

3. Test whether the installation is successful

Right-click Projects-->team-->share Project: If you see SVN on behalf of the plugin installed successfully.


This article is from "an old City, memory is still." "Blog, be sure to keep this provenance http://diaosi58.blog.51cto.com/2722311/1649853

MYECLIPSE2015+TOMCAT+MAVEN+SVN Project Environment Setup

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.