Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Applied changes following 5.6 latest changes
Multiexcerpt
MultiExcerptNameadmin

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 terms module and  and project module always 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 You can add such a Magnolia module folder directly into the webapp of your Magnolia instance. 

Info
titleBest practice
Multiexcerpt
MultiExcerptNameCreate separate modules for templates, content and resources

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 When a Maven module is meant, we write write Maven module.  You 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 files into a file-system directory to create a so-called light module. Use YAML-based configuration 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 The Hello Magnolia tutorial uses the light development to create a fully-functional template module.

Module structure

...

Tip

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.

Module structure

Multiexcerpt include
MultiExcerptNamestructure-comparison
PageWithExcerptModule structure

Folders:

<module-name>

The root folder of the module; the folder name is the name of the module.

(warning) For For the name of the module use only the characters from the [a-zA-Z0-9-_] regex range.

apps

Configuration data for apps (YAML files)

A Magnolia module can contain 0 to many apps.

dialogsDialogs (YAML files), may have subfolders
i18n(warning) Magnolia 5.4.6+. A bundle of localization (*.properties) files
resourcesAll the resources, typically contains subfolders
templatesTemplate definitions (YAML files) and scripts with subfolders
themesTheme definitions (YAML files), may have subfolders.
module.yaml(warning) Magnolia 5.4.7+. Light module module descriptor.

Read Module structure for further imformation.

Using Maven and adding and adding Java classes? Possible but not required

...

There is no requirement to use Java classes within a Magnolia module. But it is possible and offers many advantages.  If 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 having a Module class, the module class can have bean properties which can be loaded at module startup with values from configuration data. 

Module descriptor

Maven-based Magnolia modules should provide a module descriptor.

Note

 For For file-based Magnolia modules (light modules) module descriptors currently only support module dependencies.

A module descriptor is a Magnolia-specific XML file that identifies and defines the module.  When When you start Magnolia, the system identifies available modules by locating each module's descriptor s descriptor file.

The module descriptor file is located at src/main/resources/META-INF/magnolia/<module-name>.xml. This said, currently a module can only have a module descriptor when it is a Magnolia Maven module.

For further details please read XML-based module descriptor and YAML-based module descriptor.

...

Credits: