Magnolia 6.1 reached end of life on March 31, 2021. This branch is no longer supported, see End-of-life policy.
Magnolia has a modular architecture. A module can perform a task, package content, or provide specialized functionality. Modules can be project specific or they can be reused across different projects. You should use the module mechanism to package and deploy your own site's configuration and functionality.
In Magnolia documentation, the terms module and project module always refer to a Magnolia module.
What makes a Magnolia module are files specific to Magnolia in a particular folder, see Module structure below. You can add such a Magnolia module folder directly into the webapp of your Magnolia instance.
You can define a Magnolia module with one file, with its Module descriptor. Typically, the descriptor resides either in a Maven module or within a light module together with other files.
Best practice
When you are creating a website project, you should have one module for templates, another module for content, a third for a theme and so on.
Maven also uses the term module but it means something different. When a Maven module is meant, we write Maven module. You can make the Magnolia module folder part of a Maven module. In that case you would build a JAR file and deploy it to your webapp.
You don't need to know Java or Maven to create a perfectly valid Magnolia module. Put your project files into a file-system directory to create a so-called light module. Use YAML-based configuration and Magnolia's unified resource loading.
This enables light development, a development style which does not require Java skills or a Java development environment. It's a straightforward way to get started with Magnolia development and works well for front-end developers. The Hello Magnolia tutorial uses light development to create a fully-functional template module.
It is best practice to store your light modules outside of the apache-tomcat directory so that the modules you add can be accessed by any Magnolia instance. If you already have a light modules directory you want to use, edit the magnolia.resources.dir property in your magnolia.properties file to point to it.
These two folder trees show typical folder structures rather than structures with all folders possible.Magnolia module wrapped in a typical Maven module
structure before it is built.File-based Magnolia module under $magnolia.resources.dir
=
Light module<maven-module-name>/
├── pom.xml
└── src/
└── main/
├── java/
└── resources/
├── META-INF/
│ └── magnolia/
│ └── module-name.xml
└── <module-name>/
├── apps/
├── config.yaml
├── dialogs/
│ └── myDialog.yaml
├── webresources/
└── templates/
├── components/
│ ├── myComponent.ftl
│ └── myComponent.yaml
└── pages/
├── myTemplate.ftl
└── myTemplate.yaml
$magnolia.resources.dir/
└── <module-name>/
├── apps/
├── dialogs/
│ └── myDialog.yaml
├── module.yaml
├── webresources/
└── templates/
├── components/
│ ├── myComponent.ftl
│ └── myComponent.yaml
└── pages/
├── myTemplate.ftl
└── myTemplate.yaml
apps | optional Configuration data for apps (YAML files) |
decorations | optional Definition decorator files (YAML files), see Definition decoration. Contains subfolders. |
dialogs | optional Dialogs (YAML files), may contain subfolders. |
fieldTypes | optional Fieldtype definitions (YAML files) for the Magnolia 5 UI framework. |
i18n | optional i18n message bundle (.properties files). |
messageViews | optional MessageView definitions (YAML files). |
renderers | optional Renderer definitions. |
webresources | optional All the web resources, typically contains subfolders. (Folder name is arbitrary.) |
templates | optional Template definitions (YAML files) and scripts with subfolders. |
restEndpoints | optional REST endpoint definitions (YAML files), with subfolders. |
virtualURIMappings | optional Virtual URI mapping definitions (YAML files) to redirect incoming requests to the actual content locations. |
Refer to Module structure for further information.
If you are familiar with Java and Maven, you may use Maven to create and build your Magnolia module.
There is no requirement to use Java classes within a Magnolia module but it is possible and offers many advantages. If you want to use Java classes, we recommend that you wrap your Magnolia module into a Maven module and add the classes to src/main/java
.
If you are using Java and a module class, the class can have bean properties which can be loaded at module startup with values from configuration data. The configuration data is stored in a YAML file at src/main/resources/<module-name>/config.yaml
or in the JCR configuration
workspace under the /modules/<module-name>/config
node. For further information, see Module configuration.
Magnolia modules can define a number of items as parts of the module, for example, apps, commands, dialogs, fields, message views, renderers, templates, traits and virtual URI mappings. See Module definition items for further information.
Module descriptor is a Magnolia-specific file that identifies and defines a module. When you start Magnolia, the system identifies available modules by locating each module's descriptor file. Magnolia Maven-based modules must provide a module descriptor. It is located at In a Magnolia file-based module (light module), the descriptor is located at For Magnolia light modules, module descriptors currently support module dependencies only.In Magnolia Maven modules
src/main/resources/META-INF/magnolia/<module-name>.xml
. See XML-based module descriptor.In light modules
$magnolia.resources.dir/example-light-module/module.yaml
. See YAML-based module descriptor.
Credits: