Access to Services¶
When developing templates or scripts only a small list of services are available to use. You can expose other services with the following steps.
CrafterCMS Services¶
If your site includes a custom application context with services, you can make them available by adding them to the comma-separated list in the server-config.properties configuration file:
CRAFTER_HOME/bin/apache-tomcat/shared/classes/crafter/engine/extension/server-config.properties
¶# Patterns for beans that should be accessible from the site application context
crafter.engine.defaultPublicBeans=crafter\\.(targetIdManager|targetedUrlStrategy),someOtherBean
Note
The value from the configuration is used as a regular expression, if the value contains special
characters you will need to escape them with backslashes \\
.
System Services¶
Warning
This setting will disable restrictions for all sites
System objects like servletContext
cannot be exposed by adding them to a list, instead you will need to change
the following configuration in the server-config.properties file:
CRAFTER_HOME/bin/apache-tomcat/shared/classes/crafter/engine/extension/server-config.properties
¶# Expose all services
crafter.engine.disableVariableRestrictions=true