Project

General

Profile

Z2 Modules intro » History » Version 7

Henning Blohm, 09.09.2013 13:54

1 1 Henning Blohm
h1. Z2 Modularization Intro
2
3 2 Henning Blohm
The z2-Environment is a platform for modular application design (or, as we like to say: solution design). Its concept of a module does however differ from what other Java module runtimes offer in that a module in Z2 is not just Java code. In fact, in almost any Z2 based system there will be modules that contain no code whatsoever. That is not to say that Java code is not important or treated with indifference, it is rather that we recognize that a module, a logical partition of a system's ingredients, should contain any kind of _component type_ that the system understands. 
4
5
h2. Component Types
6
7 3 Henning Blohm
To understand Z2's modularization approach it is essential to understand its component model. A runtime system that hosts code and configuration for applications requires some sort of formalism to find instances of executable code to pass control to so that application can actually do something. In Z2 this is called components. 
8
9 5 Henning Blohm
As said above, Z2 is not all that code-centric. It would be absolutely ok, to have a Z2 implemented system that simply hosts a Web application with only static resources. No code at all. It may actually host a number of static Web applications that are to be made available or not based on some configuration. 
10 3 Henning Blohm
11
To facilitate that complexity, Z2 implements an extensible set of component types. Or more specifically:
12
13
* You can declare components of a type
14 6 Henning Blohm
* Components can be looked up using "Z2's core API":http://www.z2-environment.net/javadoc/com.zfabrik.core.api!2Fjava/api/index.html or "JNDI":http://de.wikipedia.org/wiki/Java_Naming_and_Directory_Interface
15 3 Henning Blohm
* When providing, Z2 will look for a _Component Factory_ for the given type to make sense out of the component's resources
16
17
One such component type is that of a Web application. Another one is that of a JAVA component. A component of type Web application would be expected to hold all kinds of Web application resources such as HTML files. A component of type Java is expected to hold Java types or other resources that can be retrieved via class loaders.
18
19
Now, component types have their very specific implementation. But they may know about each other. Web applications do for certain benefit from knowing Java components. Java components however do not understand anything about Web applications. 
20
21 6 Henning Blohm
To look a component up means to request the component by some name and by some type (see "here":http://www.z2-environment.net/javadoc/com.zfabrik.core.api!2Fjava/api/com/zfabrik/components/IComponentsLookup.html or "here":http://www.z2-environment.eu/v22doc#JNDISupport). Component type implementation may present components to the retrieving party by any set of interfaces. This sort of polymorphism is essential to provide functionality to generic system functions (e.g. via a "Start me up"-interface) as well as to highly specific consumers (e.g. to retrieve a class loader from a Java Component via the "IJavaComponent":http://www.z2-environment.net/javadoc/com.zfabrik.core.api!2Fjava/api/com/zfabrik/components/java/IJavaComponent.html interface). 
22 1 Henning Blohm
23 5 Henning Blohm
Check out "Components and Component Repositories":http://www.z2-environment.eu/v22doc#Components%20and%20Component%20Repositories for more details. 
24 3 Henning Blohm
25 5 Henning Blohm
Also have a look at the "Component Type Reference":http://www.z2-environment.eu/v22doc#componentTypeReference to learn about component types provided by z2_base.
26
27 4 Henning Blohm
h2. What makes a module
28 1 Henning Blohm
29 4 Henning Blohm
Now that we know what components are, we are almost at the modules. 
30 1 Henning Blohm
31 4 Henning Blohm
Basically anything that Z2 cares about is components. In fact, apart from the most basic component types to even start having a useful runtime, the core system hardly knows anything more than what components are and how invoke component factories. In order to learn about component types and their component factories (that are actually components of type component factory), the z2-Environment relies on component repositories.
32 1 Henning Blohm
33 4 Henning Blohm
Within component factories, components follow a naming scheme that is typically directly derived from a file system structure. More specifically, components are named
34 1 Henning Blohm
35 4 Henning Blohm
<pre>
36
<module>/<component>
37
</pre>
38
39 1 Henning Blohm
So, in fact, what we call a module might as well be understood as a folder of components. As the level above the single component, it is a useful place to define conventions for. 
40
41 4 Henning Blohm
The most important convention today is that all component type that have an association with implementation code (such as Web Applications), will look for a Java component of name _java_ in the module of the component. That is, although Java components can have any name, by this convention there is a primary Java component that other components of a module turn to when looking for code.
42 1 Henning Blohm
43 5 Henning Blohm
Due to the nature of Java components (see [[Z2_Java_components_intro]]), and since the Java component convention actually says to use the Java component's private loader, this defines _the non-public implementation of the module_.
44 1 Henning Blohm
45 7 Henning Blohm
A _Web application module_ for example would then typically comprise of a component _web_ of type Web application and a component _java_ of type Java. Feel free check out the [[Step_2_-_Install_and_run_in_5_minutes|introductory samples]] to see how this works in practice.
46 5 Henning Blohm
47
h2. References
48
49
* "Z2 v2.2 Documentation":http://www.z2-environment.eu/v22doc
50
* "Components and Component Repositories":http://www.z2-environment.eu/v22doc#Components%20and%20Component%20Repositories
51
* "Component Type Reference":http://www.z2-environment.eu/v22doc#componentTypeReference