Important
Currently Adobe Managed Services is not allowing AEM Groovy Console to be installed on production publish environments for security reasons. We are taking actions in order to get it accepted.
The AEM Groovy Console provides an interface for running Groovy scripts in Adobe Experience Manager. Scripts can be created to manipulate content in the JCR, call OSGi services, or execute arbitrary code using the AEM, Sling, or JCR APIs. After installing the package in AEM (instructions below), see the console page for documentation on the available bindings and methods. Sample scripts are included in the package for reference.
AEM Groovy Console 19.0.1+ runs on Java 8 and 11 with an embedded Groovy version of 4.0.9
Supported versions:
- AEM On premise:
>= 6.5.10
- AEM as a Cloud Service:
>= 2022.11
- Sling:
>=12
To install the AEM Groovy Console on older AEM versions check the original project aem-groovy-console
-
Download the console aem-groovy-console-all content package and install with PackMgr. For previous versions you can search on the Maven Central repository.
-
Navigate to the groovyconsole page.
Maven profiles can be used to install the bundles to AEM / Sling
- AEM Author running on localhost:4502
- api, bundle, ui.apps, ui.apps.aem, ui.config, ui.content:
-P auto-deploy
- all:
-P auto-deploy-single-package,aem
- api, bundle, ui.apps, ui.apps.aem, ui.config, ui.content:
- AEM Publish running on localhost:4503
- api, bundle, ui.apps, ui.apps.aem, ui.config, ui.content:
-P auto-deploy,publish
- all:
-P auto-deploy-single-package,aem,publish
- api, bundle, ui.apps, ui.apps.aem, ui.config, ui.content:
- Sling running on localhost:8080
- api, bundle, ui.apps, ui.apps.aem, ui.config, ui.content:
-P auto-deploy,sling
- all:
-P auto-deploy-single-package,sling
- api, bundle, ui.apps, ui.apps.aem, ui.config, ui.content:
To deploy the Groovy Console as an embedded package you need to update your pom.xml
-
Add the
aem-groovy-console-all
to the<dependencies>
section<dependency> <groupId>be.orbinson.aem</groupId> <artifactId>aem-groovy-console-all</artifactId> <version>19.0.3</version> <type>zip</type> </dependency>
-
Embed the package in with the filevault-package-maven-plugin in the
<embeddeds>
section<embedded> <groupId>be.orbinson.aem</groupId> <artifactId>aem-groovy-console-all</artifactId> <target>/apps/vendor-packages/content/install</target> </embedded>
If you need to have the Groovy Console available through the dispatcher on a publish instance you can add the filters following configuration.
# Allow Groovy Console page
/001 {
/type "allow"
/url "/groovyconsole"
}
/002 {
/type "allow"
/url "/apps/groovyconsole.html"
}
# Allow servlets
/003 {
/type "allow"
/path "/bin/groovyconsole/*"
}
To build and install the latest development version of the Groovy Console to use in AEM (or if you've made source modifications), run the following Maven command.
mvn clean install -P autoInstallSinglePackage
To check the OSGi configuration navigate to the Groovy Console Configuration Service OSGi configuration page.
Property | Description | Default Value |
---|---|---|
Email Enabled? | Check to enable email notification on completion of script execution. | false |
Email Recipients | Email addresses to receive notification. | [] |
Script Execution Allowed Groups | List of group names that are authorized to use the console. By default, only the 'admin' user has permission to execute scripts. | [] |
Scheduled Jobs Allowed Groups | List of group names that are authorized to schedule jobs. By default, only the 'admin' user has permission to schedule jobs. | [] |
Audit Disabled? | Disables auditing of script execution history. | false |
Display All Audit Records? | If enabled, all audit records (including records for other users) will be displayed in the console history. | false |
Thread Timeout | Time in seconds that scripts are allowed to execute before being interrupted. If 0, no timeout is enforced. | 0 |
Distributed execution enabled? | If enabled, a script will be able to be replicated from an author and executed on all default replication agents. | false |
Saved scripts can be remotely executed by sending a POST request to the console servlet with either the scriptPath
or scriptPaths
query parameter.
curl -d "scriptPath=/conf/groovyconsole/scripts/samples/JcrSearch.groovy" -X POST -u admin:admin http://localhost:4502/bin/groovyconsole/post.json
curl -d "scriptPaths=/conf/groovyconsole/scripts/samples/JcrSearch.groovy&scriptPaths=/conf/groovyconsole/scripts/samples/FulltextQuery.groovy" -X POST -u admin:admin http://localhost:4502/bin/groovyconsole/post.json
The Groovy Console provides extension hooks to further customize script execution. The console provides an API
containing extension provider interfaces that can be implemented as OSGi services in any bundle deployed to an AEM
instance. See the default extension providers in the be.orbinson.aem.groovy.console.extension.impl
package for
examples of how a bundle can implement these services to supply additional script bindings, compilation customizers,
metaclasses, and star imports.
Service Interface | Description |
---|---|
be.orbinson.aem.groovy.console.api.BindingExtensionProvider |
Customize the bindings that are provided for each script execution. |
be.orbinson.aem.groovy.console.api.CompilationCustomizerExtensionProvider |
Restrict language features (via blacklist or whitelist) or provide AST transformations within the Groovy script compilation. |
be.orbinson.aem.groovy.console.api.ScriptMetaClassExtensionProvider |
Add runtime metaclasses (i.e. new methods) to the underlying script class. |
be.orbinson.aem.groovy.console.api.StarImportExtensionProvider |
Supply additional star imports that are added to the compiler configuration for each script execution. |
Services implementing the be.orbinson.aem.groovy.console.extension.MetaClassExtensionProvider
will be automatically
discovered and bound by the OSGi container. These services can be implemented in any deployed bundle. The AEM Groovy
Extension bundle will handle the registration and removal of supplied metaclasses as these services are
activated/deactivated in the container. See the DefaultMetaClassExtensionProvider
service for the proper closure
syntax for registering metaclasses.
To provide custom notifications for script executions, bundles may implement
the be.orbinson.aem.groovy.console.notification.NotificationService
interface (see
the be.orbinson.aem.groovy.console.notification.impl.EmailNotificationService
class for an example). These services
will
be dynamically bound by the Groovy Console service and all registered notification services will be called for each
script execution.
The Scheduler allows for immediate (asynchronous) or Cron-based script execution. Scripts are executed as Sling Jobs and are audited in the same manner as scripts executed in the console.
Bundles may implement services
extending be.orbinson.aem.groovy.console.job.event.AbstractGroovyConsoleScheduledJobEventHandler
to provide
additional post-processing or notifications for completed Groovy Console jobs.
See be.orbinson.aem.groovy.console.job.event.DefaultGroovyConsoleEmailNotificationEventHandler
for an example of the
required annotations to register a custom event handler.
Sample scripts can be found in the samples directory.
Kudos to ICF Next and CID 15 for the initial development of the AEM Groovy Console. We forked this plugin because the maintenance of the plugins seems to have stopped.