Project

General

Profile

Step 3 - First steps with Z2 on Git » History » Version 28

Henning Blohm, 11.09.2012 17:54

1 25 Udo Offermann
h1. First steps
2 1 Udo Offermann
3 2 Udo Offermann
[[How_to_install_z2_v21|prev]] :: [[Z2_v21|home]]
4 1 Udo Offermann
5 4 Udo Offermann
h2. Prerequisites
6
7
You need a cloned z2-base.core repository as described on the [[How_to_install_z2_v21|previous]] page.
8 13 Udo Offermann
Furthermore you need the "Eclipse-IDE":http://www.eclipse.org (one of Galileo, Helios, Indigo or Juno is fine) and the "Egit plug-in:":http://www.eclipse.org/egit. 
9 4 Udo Offermann
10 27 Henning Blohm
h2. First steps with the z2-Environment
11 1 Udo Offermann
12 22 Henning Blohm
Next, we will look at the steps to development for Z2 using Eclipse. Please stop the server before you continue.
13 3 Udo Offermann
14 22 Henning Blohm
In order to have modules from local repositories discovered by Z2, it is required for the repositories and workspace to be siblings to each other. Go back to the "z2-base" directory (@cd ../../..@, if you are still inside the "run/bin" directory) and create a folder called "workspace" - this will be used as the workspace root for Eclipse:
15 3 Udo Offermann
16
<pre>
17 6 Udo Offermann
:bin$ cd ../../..
18
:z2-base$ mkdir workspace
19
:z2-base$ ls -l
20
total 0
21
0 drwxr-xr-x   2 mr_x  staff   68  7 Sep 16:34 workspace
22
0 drwxr-xr-x  12 mr_x  staff  408  7 Sep 15:11 z2-base.core
23
:z2-base$
24 1 Udo Offermann
</pre>
25
26 20 Udo Offermann
Now start Eclipse and choose @z2-base/workspace@ as your workspace folder.
27 1 Udo Offermann
28 22 Henning Blohm
We will add the core repository to the EGit repositories view. Detailed documentation on how to work with EGit can be found on the "EGit Wiki pages":http://wiki.eclipse.org/EGit/User_Guide.
29
In the Git perspective choose "Add an existing local Git repository". In the "Directory" field type in the path to the ".../z2-base" directory. 
30
After hitting "search" the search results should list the *z2-base.core* repository, click "finish" and the repositories view should look like this:
31 1 Udo Offermann
32 6 Udo Offermann
!EGit_repo_view_with_z2-core.png!
33 1 Udo Offermann
34 22 Henning Blohm
35
(Note: Next time you may of course skip the command line approach and clone the *z2-base.core* repository from within Eclipse.)
36
37 27 Henning Blohm
Next import the core project from the repository. Right-click the repository, choose "Import projects..." from the context menu and click "next" and then "finish". 
38 6 Udo Offermann
On the Java perspective the "core" project should be now available in the package explorer:
39
40 3 Udo Offermann
!z2_core_project_in_package_explorer.png!
41 7 Udo Offermann
42 1 Udo Offermann
The core project contains two launch entries, one for Linux/Mac OS and one for Windows. Right click the one that fits to your OS and choose "Run As >" and "z2_base".
43 22 Henning Blohm
This starts the z2-environment again and opens the z2-gui inside a new window labeled "Z2 Home (z2-base v2.1)":
44 7 Udo Offermann
45
!z2_gui.png!
46 21 Udo Offermann
47 7 Udo Offermann
From now on you will find the z2-base launch entries in Eclipse "External Tools" (either inside "Run", "External Tools >" or click the "External Tools" button in the toolbar). 
48 12 Udo Offermann
49 23 Henning Blohm
The z2-Environment provides an Eclipse plug-in called "Eclipsoid" that has a lot of neat utilities and one really important feature: Dependency resolution from a running z2-Environment.
50 9 Udo Offermann
51 24 Henning Blohm
Here's the catch: When developing with Eclipse, projects in your workspace may require Java types from other projects to compile. Eclipse will try to verify that, every time you save a source code modification. When working on a non-trivial system, you may have a lot of dependencies that you will typically not want to see clutter your workspace. That is where the plugin comes into the game. This way you can checkout and focus on a project subsets while the Eclipsoid plug-in provides the transitive closure of all required prjects and libraries. 
52
53 23 Henning Blohm
Other features provided by the Eclipsoid plug-in that are explained in more details on the [[Eclipsoid]] wiki pages.
54 3 Udo Offermann
55
h2. Installation of the Eclipsoid plug-in
56
57 26 Henning Blohm
The z2-environment that you just started contains the update site for the Eclipsoid plug-in. Open the software update/installation wizard (in Indigo it's located at "Help/Install New Software...") and use the URL http://localhost:8080/eclipsoid/update as update-site URL (the field labled "Work with"):
58 3 Udo Offermann
59 1 Udo Offermann
!Install_Eclipsoid.png!
60 11 Udo Offermann
61 26 Henning Blohm
(Your actual Eclipsoid version may differ of course.) Complete the installation wizard (you can speed up the installation procedure by deselecting "Contact all update sites during install...") and restart Eclipse. 
62 27 Henning Blohm
You should now see a new menu entry labled "z2-Environment" and two new icons:
63 3 Udo Offermann
64 1 Udo Offermann
!Eclipsoid_menu_entries_and_icons.png!
65 21 Udo Offermann
66 13 Udo Offermann
h2. Changing source code and check the result
67 1 Udo Offermann
68 26 Henning Blohm
To change source code, we need a project in Eclipse. Let's change the hello-world Web application that is contained in the samples repository. 
69 13 Udo Offermann
70 26 Henning Blohm
To do so, we need to a) make the Git repository available in EGit, b) import the project into Eclipse and c) change the project and check the result.
71
72 1 Udo Offermann
The Eclipsoid plug-in simplifies these steps. Since the z2-environment knows the repository landscape, we can ask it to share this knowledge with us. In the new "z2-environment" menu choose the entry labled "z2-Repositories view".
73 26 Henning Blohm
74 1 Udo Offermann
This will open a view like this:
75
76 14 Udo Offermann
!z2-Repositories-view.png!
77 1 Udo Offermann
78 26 Henning Blohm
This view lists all repositories known by the running system. The Eclipsoid plug-in connects by default to the Eclipsoid Web application on http://localhost:8080 that provides online information about the running environment. Note that the connection can be customized on the "z2-environment" preference page.
79 14 Udo Offermann
80 26 Henning Blohm
There are currently two repositories listed: One called *com.zfabrik.boot.config/systemRepository* containing the Z2 foundation services and one called *environment/samplesRepository* containing some sample applications including the hello world Web application.
81 1 Udo Offermann
82 27 Henning Blohm
Next right-click on the samples repository and choose "Clone Git repository" from the context menu. This will create a clone from http://git.z2-environment.net/z2-base.samples next to the core repository inside your z2-base directory. You can check this by double clicking on the samples repository (note that the entry now looks like a hypelink with blue text color). Switch back to the Java perspective and expand the "environment/sampleRepository" node and further its "z2-projects" child node. You will see all projects that are stored inside this repository. Right-click the "com.zfabrik.samples.helloworld" project and choose "Import Project" from the context menu. This does the same as the import project action of the Git repositories perspective - without switching the perspectives.
83 14 Udo Offermann
84 26 Henning Blohm
Once the project was imported go to the Java Package Explorer view and drill down to +com.zfabrik.samples.helloworld / java/src.impl / com.zfabrik.samples.helloworld / HelloWorldServlet.java+, open the the class via double click. The result should look like this:
85
86 21 Udo Offermann
!HelloWorldServlet_class.png!
87 1 Udo Offermann
88 27 Henning Blohm
In the source code you will see a lot of red x-markers indicating that Eclipse is not able to resolve certain identifiers. If you want you can check the classpath of the Hello World project and indeed there are only three entries: One for the JRE, one for the sources, and one called "Eclipsoid: z2-Environment Build Container". This container will resolve the incomplete classpath when it is asked to do so. Either select the entry "Resolve z2-Project classpaths", click the new icon !z2_resolve_icon.png!, or simply hit <Alt+R> to trigger a refresh of that build container. All red x-markers should be gone. 
89 16 Udo Offermann
90 28 Henning Blohm
Next we want to change the code: You can change whatever you like, e.g. replace "Hello World!" by "Hello Earth!" and save it. To make this change effective on the running environment, we have to tell the server two things: Firstly that it should check for changed source code and secondly that it should - beside all connected Git repositories - consider our local version as well. From the Z2 point of view the Eclipse workspace is a repository as well. We call it the _Dev-repository_ because it contains the latest ongoing development. When we ask the Z2 server to check for new changes (we say "to _synchronize_ the server"), it will find two versions of the Hello World project: one inside *environment/samplesRepository* and one inside the Dev-repository which is your Eclipse workspace. So which one should it take? To solve this "conflict" the Dev-repository has a switch for each project which can be "armed" and "disarmed". If it is "disarmed" - which is the default - the version in the Git repository will win. If it's "armed" our version in the workspace will win. So we need to "arm" the Hello World project: Right-click the project "com.zfabrik.samples.helloworld" in the Java Package Explorer and choose "Arm z2-Projects":
91 16 Udo Offermann
92 21 Udo Offermann
!Howto_arm_z2-projects.png!
93 16 Udo Offermann
94 26 Henning Blohm
You will notice that there is now a green "z" decoration at the upper left edge of the Java icon in the package explorer: !green_z_decoration.png!.
95
After we specified that the workspace version of the Hello World project should win over the one in the Git repository we can trigger the z2 synchronization: Choose "Sync with z2-environment" from the "z2-environment" menu, click the new z-icon !z2_sync.png!, or simply hit <Alt+Y>. You can also switch to the z2-gui and click the "Sync" button. As described before, the Eclipsoid plug-in talks to the z2 server via http. In situations where the web server cannot be started, the Eclipsoid web applicaton will not be available. In this case the z2-gui is the only way to trigger a synchronization (except of a shutdown and restart). You will also see that the log-messages in the z2-gui log pane has changed and that the server has invalidated and restarted one resource:
96 1 Udo Offermann
97 17 Udo Offermann
<pre>
98 1 Udo Offermann
09/11 15:34:54 [34]...entRepositoryImpl[800]: Pulled deltas from GitCR environment/samplesRepository (origin=http://git.z2-environment.net/z2-base.samples, branch=v2.1, OPTIONAL)  within 56msec
99
09/11 15:34:54 [34]...entRepositoryImpl[800]: Pulled deltas from GitCR com.zfabrik.boot.config/systemRepository (origin=http://git.z2-environment.net/z2-base.base, branch=v2.1)  within 29msec
100 17 Udo Offermann
09/11 15:34:54 [34]...hronizationRunner[800]: Found 1 invalidation candidate resources
101
09/11 15:34:54 [34]...hronizationRunner[800]: Invalidated 0 resources
102
09/11 15:34:54 [31]...ent/webWorker@0.2[800]: 09/11 15:34:54 [19]...stemStateResource[800]: Left system state: environment/webWorkerUp
103
09/11 15:34:54 [31]...ent/webWorker@0.2[800]: 09/11 15:34:54 [19]...pp.WebAppResource[800]: Stopping Web App (/helloworld): com.zfabrik.samples.helloworld/web
104
09/11 15:34:54 [31]...ent/webWorker@0.2[800]: 09/11 15:34:54 [19]...worker.WorkerSoul[800]: Invalidated 1 resources
105
09/11 15:34:54 [31]...ent/webWorker@0.2[800]: 09/11 15:34:54 [19]...pp.WebAppResource[800]: Starting WebApp: com.zfabrik.samples.helloworld/web
106
09/11 15:34:55 [31]...ent/webWorker@0.2[800]: 09/11 15:34:55 [19]...pp.WebAppResource[800]: Done starting Web App (/helloworld): com.zfabrik.samples.helloworld/web
107
09/11 15:34:55 [31]...ent/webWorker@0.2[800]: 09/11 15:34:55 [19]...stemStateResource[800]: System state attained: environment/webWorkerUp
108
09/11 15:34:55 [34]...entRepositoryImpl[800]: Pulled deltas from GitCR com.zfabrik.boot.config/systemRepository (origin=http://git.z2-environment.net/z2-base.base, branch=v2.1)  within 29msec
109
09/11 15:34:55 [34]...entRepositoryImpl[800]: Pulled deltas from GitCR environment/samplesRepository (origin=http://git.z2-environment.net/z2-base.samples, branch=v2.1, OPTIONAL)  within 30msec
110
</pre>
111
112 2 Udo Offermann
Now it's time to check the result: http://localhost:8080/helloworld - voilà! 
113 26 Henning Blohm
114
Please repeat these steps a few times: Change the source code, hit <Alt+Y> and check the result, so you will get a feeling of how fast developement roundtrips can be!