Project

General

Profile

Actions

Wiki » History » Revision 5

« Previous | Revision 5/41 (diff) | Next »
Henning Blohm, 22.01.2015 16:38


Intro

This project is for the development of z2-environment version 3.0.

Version 3.0 is a major refactoring release of z2 with new repository code lines and complete package renaming.

Essential Differences between v2.3 and v3.

  • All the typical declarations and package names are no longer com.zfabrik.<something> but rather org.z2env.<something>
  • The <z2 home> layout is completely new.
  • The essential component types that can be invoked from the core is system state and main program.
  • While Jetty is still contained to support Eclipsoid and z2Unit, we support a pre-installed Tomcat as application container.
  • The core is lighter and more dedicated.
  • No worker suppport without a corresponding add-on.
  • There will be substantially less application support like a built-in JTA implementation but we will rather demonstrate how to use third-party tools.

Draft Documentation

Getting Started

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.

Check out understanding-z2 for that.

It is simplest to start by running a simple Java main program in z2 or a simple Web App.

Follow this trail:

Building z2env-core

First clone http://git.z2-environment.net/z2env.core

git clone http://git.z2-environment.net/z2env.core

Switch into org.z2env.core.main and run

ant -Doutput=<location of z2 home> -Dsetup=<preconfigured roots> 

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.

If you omit output it will default to gen/dist. If you omit setup, no content will be pre-configured will be modified.

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).

In general this build always updates only boot, z.jar, roots. It will not remove anything.

Example to install/update a core only into ../../z2env:

ant -Doutput=here 

To install/update a web-basic setup (with tomcat and eclipsoid support) with updates from remote repos:

ant -Doutput=../../z2env -Dsetup=web-basic-remote

Understanding the <HOME>

We call an installation of a z2env core a <home>. The file structure of the <home> consists of few but important locations:

z.jar The actual core implementation. This is precompiled.
boot/ A component repository adding to the core and provides the most basic capabilities such as compiling Java code and running a main program.
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.
modules/ A file system repository declared under roots/ that is useful to locally augment a core installation.

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.

Understanding Z2

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.

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.

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.

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.

Component Repositories provides modules and components to z2. A component is prefixed by the module name:

<global component name> = <module name>/<local component name>

In fact, the typical component repository has a file system style structure that is made up exactly like that.

Structure from repo root:

/<module>/<cmp>.properties A component <cmp> in module <module> that has no resources on its own.
/<module>/<cmp>/z.properties A component <cmp> in module <module> that may have additional resources on its own.

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.

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.

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).

Dependencies, for example those between Java components, translate into dependencies between resources that are observed during invalidation of resources. This introduces invalidation and synchronization.

A crucial concept of z2 is that of a synchronization.

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.

In z2 a synchronization describes the following process:

  1. Check for changes in component repositories
  2. Based on changes found, identify components affected and invalidate associated runtime resources incl. dependent resources.
  3. Try to attain target states

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.

Updated by Henning Blohm over 9 years ago · 5 revisions