Skip to content

an devon4j application

travis edited this page Oct 16, 2019 · 15 revisions

devon4j Application

My Thai Star Basics

As an example of how an devon4j application is built we are going to show the My Thai Star application backend project, that can be found in GitHub.

The My Thai Star application is a solution for managing the online booking and orders of a restaurant, it is addressed as a showcase app but designed with real requirements although trying to serve as example of common use cases in web apps (master-detail model, login, authorization based on roles, pagination, search with filters, etc.).

MyThaiStar Home Page

The main features of the app are:

  • anonymous users can book a table.

  • anonymous users can create an event and invite some friends to the restaurant.

  • users can visit the meal catalog and see information about the available dishes (name, ingredients, picture, price).

  • both, the host and the guests, can order food for the event based on the food catalog and can select dishes with extra ingredients.

  • all the booking and order creation / cancellation operations are related to mail notifications sent by the application to warn the involved users about the changes.

  • only users with role waiter are able to access to a restricted area of the application to have access to a list with all of the bookings and orders and can access to the details of each one.

  • the waiters can filter the bookings/orders results to manage the list.

MyThaiStar devon4j Backend Overview

What we have shown in the previous section is the aspect of a My Thai Star client app that consumes the services created with the devon4j server solution.

From now on we are going to focus on the implementation of that server project to show how is it formed and how you can create your own devon4j server project with the devonfw framework.

My Thai Star project is hosted on GitHub and includes different technologies such as Java, .Net and Node for backend solutions and Angular and Xamarin as default clients.

ℹ️

The My Thai Star project is also included in the devonfw distribution, in workspaces/examples folder. Just execute eclipse-examples.bat . Import the existing Maven project. In the folder examples you will find the folder My-Thai-Star. Import it.

The devon4j Project

Using the devon4j approach for the Java backend project we will have a structure of a main Maven project formed by two sub-projects:

Maven Project Structure

In the core project we will store all the logic and functionality of the application.

The server project configures the packaging of the application.

The Components

In early chapters we have mentioned that the devon4j applications should be divided in different components that will provide the functionality for the different features of the application. Following the naming convention [Target]management being the Target the main entity that we want to manage.

The components, as part of the logic of the app, are located in the core project of the app. In the case of MyThaiStar we need to show the different available dishes, we need to manage the booking and the orders and we need to create new users. So the application will be divided in the following components:

Application Components

The Component Structure (Layers)

Each component of the app is internally divided following the three-layer architecture (service, logic and dataaccess) that Devon4j proposes. So we will have three different packages to order our component’s elements:

Component Layers

Running MyThaiStar Backend

Using Spring Boot features, we can easily run our Java backend applications using the Run as > Java application over the SpringBootApp.java main class.

MyThaiStar Backend Launch

Once we see console messages like:

Tomcat started on port(s): 8081 (http)
Started SpringBootApp in 15.985 seconds (JVM running for 16.833)

we can start consuming our Java backend.

To show the backend services results we are going to use Postman app for desktop, although you can use any other similar application.

Now, with Postman, we can do a simple GET request to obtain the info of a dish with id=1 (http://localhost:8081/mythaistar/services/rest/dishmanagement/v1/dish/1). And we obtain a result like this:

Postman Get Request Result

Creating your own devon4j Backend App

Once we have seen what we can achieve using devon4j as our backend solution, in next sections we are going to see how to create our own devon4j project step by step, starting from how to create a new devon4j project and explaining how to generate each element of the application.