Working with Client Extensions
7.4+
Using client extensions, you can extend Liferay without deploying OSGi modules. Just like traditional module development, client extensions live in a Liferay Workspace. Get started by learning
- The required tools to begin developing client extensions
- How to define a client extension in its configuration file
- How to deploy client extensions
Required Tools and Settings
Install the three prerequisites for developing client extensions:
Java 8 or JDK 11.
noteCheck the compatibility matrix for information on supported JDKs, databases, and environments. See JVM Configuration for recommended JVM settings.
Liferay workspace. To download a workspace with example client extension projects, run
curl -o com.liferay.sample.workspace-latest.zip https://repository.liferay.com/nexus/service/local/artifact/maven/content\?r\=liferay-public-releases\&g\=com.liferay.workspace\&a\=com.liferay.sample.workspace\&\v\=LATEST\&p\=zip
You can copy the client extension projects (in the
client-extensions/
directory) into your own workspace or use the sample workspace directly.If you are using Liferay Experience Cloud (LXC), you must have the
lcp
CLI tool.
Client Extension Projects
Client extension development follows a workspace plus project model. Within a Liferay workspace, you implement a client extension project under [workspace-root]/client-extensions
. The project’s client-extension.yaml
file defines its client extensions, and a build process results in a single set of outputs for each project. The built client extension project is a deployable *.zip
archive called a Liferay Universal File Format Archive (LUFFA).
Grouping Client Extensions in Projects
Client extensions grouped in a single project comprise a single, deployable unit when built. You can group client extensions where it makes sense (e.g., to improve efficiency when they should work on related tasks), but there are restrictions.
Because all client extensions in a single project are associated with a Docker container that represents a workload particular to that project, only certain kinds of client extensions are compatible for grouping. For example, microservice client extensions can only be grouped with configuration client extensions, as microservices represent a workload that runs outside Liferay.
You can group client extensions together in these ways:
- Client extensions of the same type (e.g., multiple batch client extensions)
- Configuration client extensions with batch client extensions
- Configuration client extensions with front-end client extensions
- Configuration client extensions with microservice client extensions
Building a project with an incompatible grouping of client extensions (e.g., front-end with microservice) fails with an error.
Configuring Client Extensions
Client extensions are defined in client-extension.yaml
files with these properties:
name
: Enter the name as it appears in the Liferay UI. If it’s not configurable in the UI, the name
value is not used.
type
: Set the client extension’s type (e.g., themeCSS
). The type determines how Liferay handles the client extension when it’s deployed.
dxp.lxc.liferay.com.virtualInstanceId
: Enter the virtual instance ID to deploy to.
Each client extension project has its own folder inside the workspace’s client-extensions/
folder. A client extension project contains a single client-extension.yaml
file that defines one or more client extensions. For example, the iframe-2
project’s client-extension.yaml
defines three iframe
client extensions: Baseball
, Football
, and Hockey
.
Assembling Client Extensions
When you build a client extension, files are created automatically and packaged in the resulting LUFFA. Define an assemble
block in your client-extension.yaml
file to configure files to include from your build or project files.
The assembleClientExtension
Gradle task executes when you run gradle build
or gradle deploy
within a client extension project. During execution, the files specified in the project’s assemble
block are placed into a build/liferay-client-extension-build/
folder in your project. Everything in this folder is used to create the LUFFA (e.g., dist/my-client-extension-project.zip
).
The assemble
block is a YAML array that can include multiple instructions for files to include. Each set of instructions follows this pattern:
- from: [some folder in your project]
include: [single file or glob match]
into: [output location in archive]
The assemble
array has these properties:
from
: Specify the folder from which to copy files into your client extension archive.include
: Specify a single file or glob matching a subset of files to include from the from directory. If not defined, all files are included recursively (equivalent to**/*
).You can use an array of multiple
include
patterns if needed:assemble: - from: build include: - "vite/js/*.js" - "vite/css/*.css" into: static
into
: Specify where in the resulting LUFFA to copy the matching resources.Static resources for front-end client extensions must be copied into the
static/
directory. Liferay serves these as static resources in self-hosted instances, or from containers in LXC.JSON resources for batch client extensions must be copied into the
batch/
directory.fromTask
: Instead offrom
, you can specify a Gradle task in the project to execute before the assembly step.For example, in a
microservice
client extension project using Spring Boot, the Gradle taskbootJar
creates the.jar
file containing the application and all its dependencies. In this case use the propertyfromTask
to trigger the execution of the project’sbootJar
Gradle task and then include the outputs of the task (i.e., the built.jar
file) in the root of the resulting LUFFA:assemble: - fromTask: bootJar
Example assemble
Blocks
You can include multiple from
items in the assemble
block:
assemble:
- from: build/folder/aaa
include: "css/*.css"
into: folder/aaa
- from: build/folder/bbb
include: "css/*.css"
into: folder/bbb
You can also include resources from your project that are not built, like
assemble:
- from: assets
into: static
This example places any *.ico
files from [project-root]/somewhere/else
into the static
folder of the LUFFA.
assemble:
- from: somewhere/else
include: "*.ico"
into: static
For more details on the creation, structure and contents of a LUFFA, see Packaging Client Extensions
Deploying to Your Liferay Instance
Client extensions are built into deployable .zip
archives. Each client extension archive contains a JSON file with the client extension’s settings.
Deploy client extensions by placing the .zip
files in the correct location for your Liferay installation. The exact commands you’ll use depend on how your Liferay instance is hosted.
Deploying to LXC
To deploy client extensions for LXC,
Go to your workspace’s
client-extensions/
folder and run../gradlew clean build
The compiled
.zip
files are created in each project’sdist/
folder. To build one project at a time, run the command from the project’s folder.Run this command to deploy each client extension to your chosen environment:
lcp deploy --extension [extension-zip-file]
When prompted, select a project and the deployment environment. The zip files are uploaded to your LXC project once the command completes.
Deploying to a Self-Hosted Liferay Instance
If you self-host your Liferay installation, use the workspace bundle zip to deploy your client extensions. To build and deploy your client extensions, run this command from your workspace’s client-extensions/
folder:
../gradlew clean distBundleZip
If you must manually deploy the zip files, run
../gradlew clean build
Then copy the archives from each project’s dist/
folder into the server’s [Liferay Home]/osgi/client-extensions/
folder.
Related Topics
- Batch Client Extensions
- Configuration Client Extensions
- Front-end Client Extensions
- Microservice Client Extensions
- Packaging Client Extensions