Magnolia 6.1 reached end of life on March 31, 2021. This branch is no longer supported, see End-of-life policy.
Artifact | Download | Usage / purpose |
---|---|---|
| A preconfigured Tomcat server ready to be used with any Magnolia webapp. |
Magnolia provides the following webapps and bundles.
To get the complete list of the modules in each webapp or bundle, look at the corresponding pom file of the bundle or see Supported modules in the cloud.
Artifact name | Download | Usage | Travel demo |
---|---|---|---|
DX Core | |||
| This is the DX Core webapp for projects.
| ||
dx-core-demo-webapp | DX Core webapp plus the travel demo for evaluation purposes.
| ||
| Webapp tuned for Weblogic. | ||
| Webapp tuned for Websphere.
| ||
dx-core-wildfly-webapp | Webapp tuned for Wildfly. | ||
dx-core-cloud-webapp | Mostly for internal and partner cloud Magnolia usage.
| ||
Community Edition | |||
| This is the most basic Magnolia webapp. Use this as a basis for your custom webapp. | ||
| Complete Magnolia Community Edition webapp for community projects. | ||
| Community Edition webapp plus the travel demo for evaluation purposes. | ||
magnolia-community-demo-bundle |
|
The directory structure is the container that holds the components of a webapp. The first step in creating a Magnolia webapp is creating this structure. The following table describes what each directory should contain.
Path | Contents |
---|---|
| Files with cached content. |
| Files extracted from |
| Magnolia log files. |
| Meta information files, e.g. from Maven. |
| Repository. |
| Templates extracted from |
| Temporary work directory. |
| All resources related to the application that are not in the document root. WEB-INF directory is not part of the public document. No files contained in this directory can be served directly to a client. |
| Bootstrap files. Empty by default. |
| Bootstrapped on author and public instances. |
| Bootstrapped on author instance only. |
| Bootstrapped on public instance only. |
| Class path for manually deployed classes. |
| Configuration files for repository and properties. |
| Configuration files. |
| Properties such as: repository location, persistence manager to be used, should samples be bootstrapped, should installation be done in unattended mode etc. |
| Defines repository configuration. |
| Log4j logging configuration. |
| Properties used on author instance only. |
| Properties used on public instance only. |
| Persistence manager configuration files. |
| Configuration for authentication and authorization. |
| JAR files. |
| Deployment descriptor. Describes configuration information for the entire web application. |
The Magnolia main filter is registered in the web.xml
file. The file only defines one filter:
<filter> <display-name>Magnolia global filters</display-name> <filter-name>magnoliaFilterChain</filter-name> <filter-class>info.magnolia.cms.filters.MgnlMainFilter </filter-class> </filter> <filter-mapping> <filter-name>magnoliaFilterChain</filter-name> <url-pattern>/*</url-pattern> <dispatcher>REQUEST</dispatcher> <dispatcher>FORWARD</dispatcher> <dispatcher>INCLUDE</dispatcher> <dispatcher>ERROR</dispatcher> </filter-mapping>
The Magnolia main filter will delegate the request to the Magnolia filter chain. The filter is also mapped to forward requests, which means that the Magnolia filter chain will be re-executed on internal forwards.
In web.xml
we also register one listener:
<listener> <listener-class> info.magnolia.cms.servlets.MagnoliaServletContextListener </listener-class> </listener>
The listener initializes the system, starts the repository and modules, while the filter handles all requests.