The blog
The blog is an example application that will demonstrate the features of jZonic.
Description of the application
The application we are going to develop will be a simple blogging system. Since we are using the domain driven approach to software building the very start will be the entity relationship model. The first entity is a User. Every user has one Blog. Of course every blog will have a set of Entries. Every Entry can have a set of Comments. The following picture shows the database diagramm:
Everything is pretty obvious and there is nothing special here. Please note that we have added an attribute called admin to the User object. This way we can support admins later on. These admins will have some special permissions to manage the system. Since this application is used as an example we will keep it simple and therefore no proper right management system is in place.
The documentation
This is a set of pages showing you step by step how to develop the application.