Skip to content

Basic Concepts

Poon Yip Hoon (Aeric) edited this page Oct 3, 2022 · 1 revision

Main Modules

The starting point where the application initialized and executed. AdditionalJar is defined in this module.

Handlers

The handler classes contains the functions where requests are handled. Supported requests are GET, POST, PUT and DELETE.

Conventions

In order to list your functions in the API documentation, you need to name your functions with prefix of the request.

For example, GetCategories is starting with Get. The HelpHandler will automatically create a script for each function that follow this convention so you can test the API using the API documentation.

Modules

This template is bundled with some useful functions into different reusable modules.

Filters

Similar to Modules, this template also bundled with some server filters to make use of the powerful Jetty server features like CORS and HTTPS.

Clone this wiki locally