Difference between revisions of "User:JAnastasiade"

From CDOT Wiki
Jump to: navigation, search
m (Courses Taught)
m (Tutorial WIKI format)
Line 56: Line 56:
 
</ul>
 
</ul>
  
== Tutorial WIKI format ==
 
 
=Web Tools Platform (WTP) Tutorials -- Using Eclipse to Develop WTP=
 
=Web Tools Platform (WTP) Tutorials -- Using Eclipse to Develop WTP=
  

Revision as of 21:48, 2 October 2010

Jordan Anastasiade, PhD
Jordan Anastasiade.jpg
Faculty Picture
Occupation Seneca College School of Computer Studies Faculty
Office T1034
Phone 416.491.5050 ext 3261
IRC _jordan
Home Page http://cs.senecac.on.ca/~jordan.anastasiade
Blog
Email jordan.anastasiade@senecac.on.ca

Jordan Anastasiade is a Seneca College School of Computer Studies Faculty. He teaches both the DPS903/EJB605 - Java EE Architecture and Enterprise JavaBeans and the DPS909/OSD600 - Topics in Open Source Development course at the Seneca College York University Campus.

Courses Taught

DPS903/EJB605 - Java EE Architecture and Enterprise JavaBeans

Further information: DPS903/EJB605

Eclipse Web Tools Platform (WTP) Project

Further information: DPS909 and OSD600 Winter 2009 Eclipse WTP Weekly Schedule

References

External links

Web Tools Platform (WTP) Tutorials -- Using Eclipse to Develop WTP

Author

This tutorial is prepared by Jordan Anastasiade, Seneca College - Computer Studies (S@Y) on October 10, 2008 by adaptation from Mark Hutchinson, IBM February 21, 2005/June 2, 2006.

Acknowledgments

I deeply appreciate the support we have received from IBM Lab Toronto, Special thanks to Mr. Angel Vera for his invaluable help. Farhad Norouzi - Opent Source Eclipse WTP (DPS911 - Winter 2009 - student) wrote the wiki version

Overview

This tutorial explains how one could set Eclipse environment to develop or modify the Web Tools Platform (WTP) project elements.

While the example presented is insignificant, the tutorial explores in details the steps for building the WTP development environment,thus being valuable to new developers and contributors to WTP project.

Necessary Elements to Set Eclipse WTP Development

Before one could start working with WTP project, the development and target platforms must be defined on hardware platform.

Following elements are necessary to set the Eclipse environment for the Web Tools Platform (WTP) Development process:

  • Download the development platform from Eclipse for RCP/Plug-in Developers. At the time of preparing this tutorial, the zip file is called eclipse-rcp-ganymede-SR1-win32.zip.
After downloading the zip file, define a working directory and unzip the downloaded file into that directory. For example, in this tutorial the development plug-in directory will be called <Eclipse_Base>.

Also, download the following files:

  1. Eclipse Platform (Platform, JDT) - file: eclipse-SDK-3.4.1-win32.zip
  2. EMF v2.5 Runtime Minimum executable code - file: emf-runtime-2.4.1.zip
  3. EMF XSD v2.5 Runtime Minimum executable code - file: xsd-runtime-2.4.1.zip
  4. Graphical Editing Framework (GEF) - file: GEF-SDK-3.4.1.zip
  5. Data Tools Platform (DTP) (required only for EJB or JPT development) - file: dtp-sdk_1.6.1.zip
  6. Very important file: the non-SDK package wtp


After downloading all those files, define a working directory for WTP and unzip the downloaded files into that directory (e.g. <IBM/WTP_Builds/3.0.3>).

Warning

The name of the files and respective links are probably going to be changed, replaced, or modified as the development environment requires, but the principles are constant.

One must download from the build only the files that are needed such as: the first five core development files must be the SDK files, but the files for the core WTP must be non-SDK.

The reason is simple: the latest SDK source will be taken from CVS repository as described further.

Get Started

  • Start Eclipse and define in the dialog Workspace Launcher the Workspace based on your preferences, possibly including the current date of development: <./wksp/WTP3.0.3/Oct10>.


WebApp-WorkSpace 1.jpg


  • In this workspace develop a simple Dynamic Web Project with a web component (e.g. Servlet).


SimpleWebApp 2.jpg



  • Let us assume that one wants to fix a generic Bug / Enhancement defined as following:
When a Web Application is running, in the server view the ToolTip window must display the date and time when the window is created.

Check out WTP Source Code in CVS Repository

  • Go to <Eclipse_Base> directory and start the plug-in development environment.


Development-WorkSpace 3.jpg


  • Access the source code for the Eclipse Web Tools Platform from the Concurrent Versions System (CVS) repository. To access the CVS repository select:
Window > Open Perspective > Other and select CVS Repository Exploring
  • The CVS Repositories view is now on the left side of your screen. Select the Add CVS Repository icon Addrepositoryicon.gif or right click on the CVS Repositories view and click New > Repository Location.
  • In the Add CVS Repository dialog enter the following values and click on Finish:
Host: dev.eclipse.org
Repository Path: /cvsroot/webtools
User: anonymous
Password: <user's email>
CVS-Dialog 4.jpg


  • Navigate through the folders and find the plug-ins that you are interested in having the source for. The most recent code is in HEAD. The Web Tools Platform for working with servers plug-ins are found in the servertools folder.
  • For solving the problem previously defined one should look for the files to be checked out (e.g. HEAD->servertools->plugins->org.eclipse.wst.server.ui).
  • Add the source into your local workspace by right clicking on that plug-in and selecting Check Out.


CheckOut-Dialog 6.jpg


  • The source code for the plug-in you downloaded is now in your workspace.


CheckOut-Progres 5.jpg


Set up Target Platform

The specified target platform contains the eclipse plug-ins which your code will be compiled against. Having a target platform allows you to compile and run your modified code without having to bring all of the source code into your development workbench. The target platform should be the same platform you are developing for.

Following steps demonstrate how to set up your target platform:

  • From your development workbench select Window > Preferences > Plug-in Development > Target Platform.
  • Enter the location of the platform you wish to target.


TargetPlatform-Dialog 7.jpg


Modify WTP Source Code

As an example, we are going to modify Tool Tip window content to include the date and time as required by the bug defined above.

  • Change the perspective to Java perspective (Window > Open Perspective > Other and select Java).
  • In the Java perspective, Package Explorer open the file ServerToolTip.java. org.eclipse.wst.server.ui->serverui->org.eclipse.wst.server.ui.internal that you just checked out.


OpenFile-13.jpg


  • Change the content of the file ServerToolTip.java for solving the problem previously defined. For example in our case:
  • Add the line: import java.util.Date;
  • In the method: protected Compsite createToolTipContentArea , add the following red line:


font = new Font(display, fd);
parent.addDisposeListener(new DisposeListener() {
public void widgetDisposed(DisposeEvent e) { font.dispose(); } });
hintLabel.setFont(font);
sText.setText("" + new Date() + "");
parseText(sText.getText(),sText);
  • Save the file (or files) based on the changes required to solve your bug(s).

Run Modified Eclipse Web Application With New Code

  • (a) Right click in the space the file you modified (i.e. ServerToolTip.java) or (b) use Run->Run Menu.
  • (a) From the popup menu choose Run As->Run Configuration or (b) In the Run dialog select the Eclipse Application option, then select New.
  • In the Run Configurations dialog enter the location of the desired workspace, and select Run. The location of the desire workspace is the directory on your system where you developed the simple Dynamic Web Project.


RunConfiguration-8.jpg


  • When Eclipse runs it compiles the source code in your workspace, and starts the target platform. A second instance of Eclipse is now running and you are now able to test any code modifications you have made. Now test out your modification.


FinalResult 9.jpg


  • The new Tool Tip window displays the date and time when it was created. Thus, our problem as previously defined is solved and the new code must be uploaded to CVS.

Create Patch With Source Code Changes - Submit Patch to WTP Project

To contribute an enhancement to WTP, one can submit the code changes as a patch. Before creating the patch one must synchronize the local state with the CVS source code state to ensure that the latest code was pulled in from the CVS repository (just in case someone else modified the code while they did their modifications).

  • In the Package Explorer view, right click on the modified plug-in project and select Team > Synchronize with Repository.


Synchro-14.jpg


  • To create the patch, in the Package Explorer view, right click on the modified plug-in project and select Team > Create Patch.


CreatePatch-10.jpg


  • Select Save in File System and enter the file name. Select Next.


FilePatch-11.jpg


  • Select Finish.
  • The patch has been saved to your file system.


PatchContent-12.jpg


  • If this were an actual feature enhancement the patch could be submitted to the webtools project using Bugzilla.

Summary

The tutorial is the first one from a series of WTP tutorials. In this tutorial one learned how to set up the Eclipse environment to start developing and maintaining Web Tools Platform plug-ins, by creating a simple addition to the user interface in th servertools part of WTP. The tutorial explained in details the procedure (i.e. the steps necessary) for setting up an Eclipse working environment for developing and maintaining WTP projects. (Please address any comments and suggestions at Jordan DOT Anastasiade AT gmail DOT com).