-
Notifications
You must be signed in to change notification settings - Fork 23
Basic concepts
This page explains the basic concepts of the SHOGun2 software design.
SHOGun2 is intended to be
- Reusable
- Extendable
- Maintainable
Therefore SHOGun2 shall consist of (preferably independent) modules. To achieve this, SHOGun2 is organized as a Maven Multi Module project.
Maven is using POMs (XML files) to configure the build of a project. Each POM results in a (maven) artifact with some kind of (packaging) type, for example jar
, war
, pom
or maven-archetype
.
A Maven multi module project is realized by defining a root/super/parent POM (of packaging type pom
) with a list of modules (which are in fact subfolders with custom POMs). On top of that it is possible that POMs (of modules) inherit (and possibly overwrite) the properties of their parent POM, which makes it easy to maintain a simple and clear project configuration.
The modules of SHOGun2 are structured in the following way:
-
shogun2 (
pom
, root)-
core (
pom
, the core-module, which has submodules again) -
init (
jar
, module for content initialization) -
web (
jar
, web/controller layer to provide some interface) -
webapp-archetype (
maven-archetype
, template artifact for the quick creation of a SHOGun2-basedwar
-artifact, i.e. webapplication)
-
core (
SHOGun2 makes use of the ExtDirect technology. ExtDirect is a technology, that allows you to call backend-methods (in our case JAVA-based) from your frontend (JavaScript).
Here you will find some general information about ExtDirect.
SHOGun2 uses the extdirectspring framework to connect the Ext4 frontend with the Java/Spring backend. You will find useful information about this framework in its wiki.
Based on a SHOGun2-based webapplication, that was built with the shogun2-webapp-archetype, we will illustrate how ExtDirect works:
- Have a look at the
web.xml
and keep in mind what you see:
<servlet-mapping>
<servlet-name>{{YOUR SERVLET}}</servlet-name>
<url-pattern>/action/*</url-pattern>
</servlet-mapping>
- Have a look at the
index.html
:
<script type="text/javascript" src="action/api.js"></script>
- Have a look at this file (use
api-debug.js
here as it is better to read):
http://localhost:8080/{{YOUR SERVLET}}/action/api-debug.js
This file is provided by a web-controller of the extdirectspring framework. It contains information about backend-methods, that can be used in the frontend. All those methods have an @ExtDirectSpring
annotation in the Java-Code. Otherwise they won't be published in the api.js
.
Here you will find detailed information about the API.
SHOGun2 offers a web-interface that can be used to retrieve autogenerated Ext4-data-models (which are based on the available Java-models). Originally, the Ext-model-generator was part of extdirectspring, but meanwhile it is a separate project: https://github.com/ralscha/extclassgenerator