Project

General

Profile

Wiki » History » Version 17

Henning Blohm, 23.01.2015 10:43

1 1 Henning Blohm
h1. Intro
2
3 2 Henning Blohm
This project is for the development of [[z2-environment:wiki|z2-environment]] version 3.0.
4 1 Henning Blohm
5 2 Henning Blohm
Version 3.0 is a major refactoring release of z2 with new repository code lines and complete package renaming.
6 1 Henning Blohm
7 2 Henning Blohm
h1. Essential Differences between v2.3 and v3.
8 1 Henning Blohm
9 2 Henning Blohm
* All the typical declarations and package names are no longer *com.zfabrik.<something>* but rather *org.z2env.<something>*
10 13 Henning Blohm
* The <z2 home> layout is completely new and more flexible
11 3 Henning Blohm
* The essential component types that can be _invoked_ from the core is *system state* and *main program*.
12 14 Henning Blohm
* While Jetty is still contained to support Eclipsoid and z2Unit, we support a pre-installed Tomcat as application container (and with TomEE would even get a Java EE profile)
13 1 Henning Blohm
* The core is lighter and more dedicated. 
14 12 Henning Blohm
* There will be substantially less built-in application support like
15
** a local JTA implementation 
16
** No worker suppport without a corresponding add-on.
17 1 Henning Blohm
18 12 Henning Blohm
The main task of v3 is:
19 13 Henning Blohm
* Make the lower parts of z2 more accessible and easier to understand: While z2 previously started System Centric, we now close the gap from the ordinary main program.
20 12 Henning Blohm
* Increase the OSS flavor of z2
21
22 15 Henning Blohm
Obvious TODOs:
23
* Finish Java 8 support
24
* Test TomEE
25
* Fix Eclipsoid templates
26
* Support MVNCR, also for distributions
27 12 Henning Blohm
28 9 Henning Blohm
h1. Draft Intro Documentation
29 1 Henning Blohm
30 2 Henning Blohm
h2. Getting Started
31 1 Henning Blohm
32 2 Henning Blohm
To understand how z2 works, you need to understand at most what are z2 modules and components and what are component repositories and how these concepts interplay. 
33 1 Henning Blohm
34 6 Henning Blohm
Check out [[wiki#Understanding-Z2|understanding-z2]] for that.
35 1 Henning Blohm
36 2 Henning Blohm
It is simplest to start by running a simple Java main program in z2 or a simple Web App. 
37 1 Henning Blohm
38 2 Henning Blohm
Follow this trail:
39 1 Henning Blohm
40 4 Henning Blohm
* [[wiki#Building-z2env-core|Building the core]]
41 7 Henning Blohm
* [[wiki#Running-a-Hello-World-main-program|Running a Hello World main program]]
42 10 Henning Blohm
* [[wiki#Running-a-Hello-World-Web-App|Running a Hello World Web App]]
43 1 Henning Blohm
44 3 Henning Blohm
h2. Building z2env-core
45 1 Henning Blohm
46 17 Henning Blohm
(For now, we need to build the core).
47
48
h3. Pre-requisites
49
50
* You need Git installed
51
* You need a JDK, at least version 7
52
* You need the ANT build tool
53
54
55
56 3 Henning Blohm
First clone http://git.z2-environment.net/z2env.core
57
58
<pre>
59
git clone http://git.z2-environment.net/z2env.core
60
</pre>
61
62
Switch into *org.z2env.core.main* and run 
63
64
<pre>
65 5 Henning Blohm
ant -Doutput=<location of z2 home> -Dsetup=<preconfigured roots> 
66 3 Henning Blohm
</pre>
67
68 5 Henning Blohm
where <location of z2 home> is where you want to install z2 (the <z2-home>) and <preconfigured roots> is a choice of pre-configured content, actually component repositories.
69 3 Henning Blohm
70
If you omit *output* it will default to *gen/dist*. If you omit *setup*, no content will be pre-configured will be modified. 
71
72
Check the folder *setups* for available setups of the core build. These can be local (all repos will be cloned locally) or remote (repos will be remoted).
73
74
In general this build always updates only boot, z.jar, roots. It will not remove anything.
75
76
Example to install/update a core only into ../../z2env:
77
78
<pre>
79
ant -Doutput=here 
80
</pre>
81
82
To install/update a web-basic setup (with tomcat and eclipsoid support) with updates from remote repos:
83
84
<pre>
85
ant -Doutput=../../z2env -Dsetup=web-basic-remote
86 1 Henning Blohm
</pre>
87 7 Henning Blohm
88
h2. Running a Hello World main program
89
90
For now, we will assume you have a z2 core installed in <HOME>. In its purest form, all the core can actually execute is simple Java main programs. 
91
92
Being in a modular environment, even if we only want to say „Hello World“, we need a module. Let's call it the greeter module. In order to have a main program run by z2, we need to also declare a  component for it, as that is what we tell z2 to run (not a class – mind you – but rather a component in a module). Assuming we use the local component name hello, than the absolut component name is 
93
94
<pre>
95
greeter/hello
96
</pre>
97
98
Finally, as this component actually has implementation code, we need to declare a Java component. By convention this is 
99
100
<pre>
101
greeter/java
102
</pre>
103
104
Now, after installing in <HOME> the place to simply drop a module is under <HOME>/modules. All in all, here is the complete structure to create:
105
106
| <HOME>/modules/greeter/hello.properties | 
107
<pre><code class="ruby">org.z2env.component.type=org.z2env.main
108
component.className=greetings.Main
109
</code></pre> |
110
| <HOME>/modules/greeter/java/z.properties | 
111
<pre><code class="ruby">org.z2env.component.type=org.z2env.java
112
</code></pre> |
113
| <HOME>/modules/greeter/java/src.impl/greetings/Main.java |
114
<pre><code class="java">
115
package greetings;
116
117
public class Main {
118
  public static void main(String[] args) {
119 8 Henning Blohm
    System.out.println("Hello!");
120 7 Henning Blohm
  }
121
}
122
</code></pre> |
123
124
That gives us the two components of module greeter. To run this on the command line, run
125
126
<pre>
127
java -DcomponentName=greeter/hello -jar z.jar
128
</pre>
129
130 1 Henning Blohm
Now, obviously this sample is not worth a modular execution environment. But even from here, you could check your module in with some Git repository that is referenced from the roots and all other users of the same repo would be able to run your component without installing anything.
131 10 Henning Blohm
132
h2. Running a Hello World Web App
133
134 11 Henning Blohm
This introduction explains how to connect a z2 core to a given Tomcat installation and how to develop a simple Web Application.
135 7 Henning Blohm
136 11 Henning Blohm
Furthermore it describes how to use the Dev Repository and the Eclipsoid plugin for the Eclipse or the IntelliJ development environment.
137 7 Henning Blohm
138 11 Henning Blohm
h3. Pre-Requisites
139
140
* We assume the Eclipse IDE.
141
* Please install the Eclipsoid Plugin from http://z2-environment.net/eclipsoid/update/site.xml
142
* We assume a development workspace in *workspace*.
143
* Have a local Tomcat (7 or higher) installation.*
144
145
h3. Steps we are going to take
146
147
# Create a module with a simple Web app
148
# Make it visible to Z2
149
# Run the Web App in a Tomcat Web Container
150
151
At first get yourself a z2env core with the *web-basic-local* or *web-basic-remote* setup. Make sure it is in your *workspace*. If you follow [[wiki#Building-z2env-core|Building the core]] this means running 
152
153
<pre>
154
ant -Doutput=workspace/z2env -Dsetup=web-basic-remote
155
</pre>
156
157
Using your IDE create a new project *hello* in *workspace* with the following structure:
158
159
160
| java/z.properties | 
161
<pre><code class="ruby">
162
org.z2env.component.type=org.z2env.java
163
java.privateReferences=\
164
	javax.servlet
165
</code></pre> |
166
| web/z.properties |
167
<pre><code class="ruby">
168
org.z2env.component.type=org.z2env.tomcat.webapp
169
webapp.path=/hello
170
</code></pre> |
171
| web/WebContent/index.jsp |
172
<pre><code class="html"><html><body>Hello! Did you know that 7*7=<%=7*7%>?</body></html></code></pre> |
173
| LOCAL | <empty file> |
174
175
So far, that's it.  We will touch on the LOCAL file later. 
176
177
When we run Z2 knowing this Web Application, it will attempt to start a Tomcat Web Container that will serve the application's content. To do that, it needs to find one. 
178
179
In order to tell Z2 where to look, you can either set an environment variable *CATALINA_HOME* (you might have already – it's the Tomcat standard) or specify an environment variable *catalina.home*. 
180
181
To be on the safe side and assuming the location is */home/me/tomcat*, we open a terminal, change into *workspace/z2env* and run
182
183
<pre>
184
java -Dcatalina.home=/home/me/tomcat -jar z.jar hello/web
185
</pre>
186
187
Note, unlike for the main program, the command line will not return. Instead you can enter „q“ to quit or „s“ to synchronize. But first let's open a browser and check out 
188
189
<pre>
190
http://localhost:8080/hello
191
</pre>
192
193
Now on to that LOCAL file. Unlike for the Hello World main program, this time it was to so-called Dev Repo that made our module available to z2. 
194
195
The dev repo is a key component to the development approach with z2. It checks for all modules that have a LOCAL file and that are stored some levels deep, relative to the parent folder of the z2 home (by default), which not so coincidentally is our workspace.
196
197
Try this: 
198
199
# Remove LOCAL
200
# Enter „s“ for synchronization. 
201
# Check the URL above (should say „not found“)
202
# Create a LOCAL file again
203
# Synchronize
204
# Check again.
205
206
Similarly, from now on, changes made to the hello module will be picked up, whenever you synchronize.
207 1 Henning Blohm
208
h2. Developing with Eclipsoid
209
210 15 Henning Blohm
Add some real code for the web app, resolve classpath in IDE with Eclipsoid.
211
(NOTE: 
212
* Eclipsoid templates have *com.zfabrik*
213
* Server port for Eclipsoid is now 8081
214
)
215 12 Henning Blohm
216 1 Henning Blohm
TBD
217 12 Henning Blohm
218
h2. Multi-Module Development
219
220
TBD
221
222
h2. Going System-Centric
223
224
TBD
225
226
Getting more real by adding a remote repo as system repo.
227
228
Develop by checking out modules and using the Dev Repo.
229
230 3 Henning Blohm
231
h2. Understanding the <HOME>
232
233
We call an installation of a z2env core a *<home>*. The file structure of the *<home>* consists of few but important locations:
234
235
| z.jar | The actual core implementation. This is precompiled.|
236
| boot/ | A component repository adding to the core and provides the most basic capabilities such as compiling Java code and running a main program. |
237
| roots/ | A file system component repository that is always registered by the core. This is typically filled with other repository components linking to remote or local component repositories. |
238
| modules/ | A file system repository declared under roots/ that is useful to locally augment a core installation.|
239 1 Henning Blohm
240
We use the modules repository for example for command line experiments and simple hacks. It is not as useful for regular development operations as is the dev repo.
241 5 Henning Blohm
242
h2. Understanding Z2
243
244
Most of the concepts that make up z2 can be derived from the desire to efficiently develop standard Java Web Applications that are defined in a central system definition. Add to that the wish to avoid all that build complexity and the desire for a practically usable modularization approach.
245
246
Once you loose the ability to tweak some build script or configuration to describe how to package a Web app or some libraries, you need some structural hint and simple declarations providing sufficient information.
247
248
Secondy, assuming you want to apply changes at runtime, you need some way of determining what to unload at runtime, given some changed file. Again: Structural information needs to present that maps to runtime state. 
249
250
Finally, as we want some support for modular application development anyway, why not make modules our essential structure. As we have not only code but also Web Applications, Data Sources,  Background Jobs and much more to consider, we add components with type into the mix. Voila.
251
252
*Component Repositories* provides modules and components to z2. A component is prefixed by the module name:
253
254
<pre>
255
<global component name> = <module name>/<local component name>
256
</pre>
257
258
In fact, the typical component repository has a file system style structure that is made up exactly like that. 
259
260
Structure from repo root:
261
262
| /<module>/<cmp>.properties | A component <cmp> in module <module> that has no resources on its own.|
263
| /<module>/<cmp>/z.properties | A component <cmp> in module <module> that may have additional resources on its own.|
264
265
Note that some components, like Web applications and typically Java components have file resources, such as HTML files or Java source code files, while other components, such as main program declarations or data source declarations, so not.
266
267
There are some conventions around this naming scheme. In particular, by convention, whenever a component requires Java implementation, z2 will first look for a component named *java* of the same module. As for example in the Hello World example.
268
269
To give you an idea what this model translates to at runtime consider this: At runtime, the static component is turned into a Resource instance by a component type implementation (that, in fact, is provided by another, built-in component type). 
270
271
!uml1.png!
272
273
Dependencies, for example those between Java components, translate into dependencies between resources that are observed during invalidation of resources. This introduces invalidation and synchronization.
274
275 16 Henning Blohm
h3. A crucial concept of z2 is that of a synchronization. 
276 5 Henning Blohm
277
For fast development roundtrips and in some cases for general configuration updates, it is desirable to not require a complete restart of a Java Virtual Machine process but rather just to change runtime state accordingly. 
278
279
In z2 a synchronization describes the following process:
280
281
# Check for changes in component repositories
282
# Based on changes found, identify components affected and invalidate associated runtime resources incl. dependent resources.
283
# Try to attain target states
284
285 1 Henning Blohm
That is, whenever you do a change and trigger a synchronization from your IDE, this is exactly what happens: Identify what needs to be thrown away, make sure to remove dependent stuff as well,  bring up what needs to be running.
286 16 Henning Blohm
287
h3. A second crucial concept of z2 is that of *System Centric Development*
288
289
When working on a software system with many access points and high re-use on a service level, as is typical for business systems, staying quick integration with a team's changes is key. Component repositories can be fed from remotely accessible version control systems such as Subversion and Git. When connecting to a central, team-shared repository, every synchronization will make sure that you are up-to-date with the real source of truth. 
290
291
Using the dev repo, you can still isolate yourself from changes on part of the system that you are actively working on. After your modifications are completed, rebased, and locally tested, getting a clean and consistent state is just one synchronization away.
292
293
h3. The third and final concept is that of a compile-free environment
294
295
It is within the nature of the synchronization concept, that anything required to happen to have your software available for execution must have happened after synchronization completed. Most preparation steps are executed at first use. This includes the compilation of Java code. Z2 uses the Eclipse Java Compiler for that purpose.
296 9 Henning Blohm
297
h2. The Component Model
298
299
See [[z2-environment:Z2_Modules_intro]]
300
301
h2. Java Components
302
303
See [[z2-environment:Z2_Java_components_intro]]