Rendering content
Rendering is the process of merging templates with content. It generates a meaningful stream of HTML that can be displayed in a browser. This is the step where content becomes visible to the end user in page context.
Advanced topic
It is not necessary to use a rendering model in Magnolia templating, but it is useful. Before you create your own model class, see if Magnolia’s templating functions have the logic you need. They may save you some effort.
Rendering is performed by info.magnolia.rendering.engine.RenderingEngine. The engine generates HTML output based on templates. info.magnolia.rendering.engine.RenderingFilter, which is part of the filter chain, submits a content node to the engine.
Since submission of content is handled through a filter, an independent servlet or Java application can also submit content to the Magnolia rendering engine (FreeMarker only). You can trigger the rendering of any content node from Java code or template script. This is useful if you want to render a node that is not part of the page structure. |
Steps involved in rendering content
On submission of content to the engine, the following process kicks off:
-
Read template definition: The rendering engine reads the template definition assigned to the content. The template definition provides the engine with details such as a path to the
templateScript
and the templating language used (FreeMarker). -
Select renderer: Based on the templating language, the engine selects a renderer. Magnolia ships with three renderers:
-
Freemarker renderer.
-
Site aware renderers.
-
SPA renderer. (Uses slightly different rendering techniques.)
You can also use your own custom renderer.
-
-
Execute renderer: The renderer is executed. If the template definition specifies a model class then the renderer instantiates the model object from this class. The model is a JavaBean. This is where your business logic resides. Before the renderer calls the script, the model’s
execute()
method is called. The model can execute any Java code to retrieve data from the JCR repository or from an external source. The return value of theexecute
method is passed to the template script with theactionResult
object. -
Call template script: The renderer calls the assigned template script and passes the current content, the model and all context objects to it. FreeMarker interpolations like
${content.title}
are replaced with actual values and directives like#list
are processed. The output of the merge process is an HTML stream response that can be displayed in a browser.
Renderers
A renderer is a Java class library that understands a particular
templating language and produces text output. For example,
info.magnolia.rendering.renderer.FreemarkerRenderer
understands FreeMarker tags and produces output in HTML, XML, RTF, Java
source code and a few other formats. A renderer is not an end-user
application but rather something programmers can embed into their
products. You can register a renderer in your own module configuration
under a renderers
folder. See Renderers
for more.
Any renderer that knows how to call a Java method can theoretically be used to render authoring UI components. Velocity (similar to FreeMarker but lighter) and ColdFusion are examples of popular templating languages that have been implemented successfully.
Rendering order
Rendering of page content happens in a top-to-bottom fashion. Rendered HTML is sent to the output stream as soon as it gets rendered.
When a page template script calls an area, and the area in turn calls a component, the rendering engine follows referenced scripts down the rabbit hole until it finds the last script in the sequence. It then moves to the next element on the page, starting where it left off.
As a consequence, you cannot redirect in a component model as the request was already committed when the rendering of the page started. Any operations changing the HTTP response headers (redirects, setting cookies…) can only be executed in the page template’s model.
Early execution of components
Sometimes components need to be able to execute logic before page rendering starts. This is necessary for operations such as forwarding and redirecting.
Early execution is implemented using info.magnolia.rendering.model.ModelExecutionFilter.
This filter comes before page rendering in the Magnolia
filter
chain. A special request parameter mgnlModelExecutionUUID
contains
the UUID of the component that should be executed. The component model
can decide if it wants to output something special or continue with
rendering normally. If the model implements the
info.magnolia.rendering.model.EarlyExecutionAware
interface, then the executeEarly
method is called. Otherwise the
normal execute
method is called.
Possible special instructions are:
-
skip-rendering
causes the rendering engine to abort page rendering. The template is never rendered. -
redirect:<url>
sends a redirect HTTP header to the client and stops page rendering. The URL can be absolute or relative inside the Web application, that is, the context path is added by Magnolia. -
permanent:<url>
sends a permanent redirect (301) to the client and stops page rendering. The URL can be absolute or relative. -
forward:<url>
performs a forward to the returned URL. The URL can be absolute or relative.
If the component model decides to continue normally, the
already-executed model and its actionResult
are used instead of
executing the model again.
Early execution proceeds like this:
-
info.magnolia.rendering.model.ModelExecutionFilter is configured before info.magnolia.rendering.engine.RenderingFilter in the Magnolia filter chain. This filter listens for the request parameter
mgnlModelExecutionUUID
, which contains the UUID of a component that should be executed early. -
The filter calls the
execute
method of the component’s rendering model. -
The filter checks the returned value for special instructions and performs them. If the result is not a special instruction, the filter stores the returned
actionResult
and the model as request attributes and passes them on to the rendering pipeline. The request attribute is stored with a name that includes the UUID. -
info.magnolia.rendering.renderer.AbstractRenderer checks for attributes set by the filter for the component it is about to render. If they are present their values are used, otherwise the model is executed normally.
|
Direct component rendering
You can request a component to be rendered directly by URL. This is
useful when rendering Magnolia content in an external system, for
example. The URL pattern follows the storage path in the JCR. For
example, the first component in any area on your home page resides at
path /my-site/<area name>/0
in the JCR.
Request the component using the path in the URL:
Direct area rendering
Direct area rendering allows you to request any area that has a node in the JCR.
To request an area:
-
Insert the
mgnlArea
selector into the URL after the page name but before the.html
extension. Set the value to the area name.~mgnlArea=<area name>~
-
Add the path to the nested area separated by commas to request a nested area.
~mgnlArea=<<main area name>,<nested area name>>~
Direct area rendering is achieved using a rendering listener registered in /server/rendering/engine/listeners/directAreaRendering
.
Property | Description |
---|---|
|
info.magnolia.rendering.context.AreaFilteringListener is an area rendering listener for enabling/disabling output according to rendered content. |
Here’s the main
area of the /travel/about
page rendered by the URL:
http://localhost:8080/magnoliaAuthor/travel/about~mgnlArea=main~.html
|
Populating the rendering model with request parameters
You can populate info.magnolia.rendering.model.RenderingModel with request parameters. This is useful for reacting to URL information. For example, identify a visitor who comes from an email campaign and execute custom rendering logic for them. Here is an example of parameter that tells you the visitor clicked a link in a Campaign Monitor email campaign.
http://www.your-site.com/about.html?utm_source=CampaignMonitor
Enabling the population of request parameters
You can enable and disable the population of request parameters globally for all templates or for a specific template. |
If you cannot control the template, you can also do this for a specific component definition. |
Globally: |
-
Go to Configuration >
/server/rendering/engine
-
Create a new property
autoPopulateFromRequest
and set the value totrue
orfalse
. default istrue
.
For a specific template definition, overriding the global setting:
-
Go to Configuration >
/modules/<your-module>/templates/pages/<template definition>
-
Create a new property
autoPopulateFromRequest
and set the value totrue
orfalse
. Default is null. This means the global setting applies if you don’t set a value.
For a specific component definition, overriding the global setting:
-
Go to Configuration >
/modules/<your-module>/templates/components/<component_definition>
-
Create a new property
autoPopulateFromRequest
and set the value totrue
orfalse
. Default is null. This means the global setting applies if you don’t set a value.
Processing the parameter in a model class
In your model class, implement a setSomeParameter(String)
method. The
method will be called with the attribute value as the parameter.
class MyModel implements RenderingModel {
private String someParameter;
public void setSomeParameter(String someParameter) {
this.someParameter = someParameter;
}
public String getSomeParameter() {
return someParameter;
}
}
Populating the rendering model with request attributes impacts performance. The rendering calculation takes about 8% longer when population is enabled. Enable it only for templates where it is really needed. |