Capability

Content Management System

Liferay’s Content Management System (CMS) offers user-friendly applications for creating, editing, publishing, and managing your site’s content.

Liferay empowers you to create and manage web content effectively. Easily create web content, upload documents, and leverage a suite of tools to administer and optimize your content. These tools include a user-friendly Content Dashboard UI, built-in Translation capabilities, and Content Performance insights.

Feature
Deployment Approach
Instance Settings YAML Configuration Reference
Instance Settings YAML Configuration Reference You can use an instance settings client extension to configure a wide variety of Liferay configurations. Each configuration is referenced by its PID...
Client Extensions
Client Extensions Liferay Self-Hosted Liferay SaaS Liferay PaaS Liferay 7.4 When you want to extend Liferay, either by modifying its look and feel or by calling functions outside of Liferay, you...
Using Object Data with React Charts
Using Object Data with React Charts Here you'll use Objects, Headless APIs, and custom element remote applications to create a dynamic chart for data dashboards. First, you'll set up a new DXP...
コンテナの設定
コンテナの設定 Liferayインストールで構成可能なものはすべて、Liferay Dockerコンテナで構成できます。 設定する最も一般的なものは次のとおりです。 JVMオプション ポータルプロパティ 画像定義の環境変数 システムプロパティ システム設定 コンテナにファイルを提供する設定のユースケースを、 [bind...
Liferay Dockerイメージの使用
Liferay Dockerイメージの使用 Docker Hubは、Linux上のTomcatにバンドルされた Liferay DXP と Liferay Portal Docker イメージをホストしています。 Liferay Docker Hubページには、さまざまなリリースのイメージの詳細とタグが表示されます。 Liferay DXP Images Liferay ポータル画像...
コンテナへのファイルの提供
コンテナへのファイルの提供 Liferayコンテナは、提供されたファイルを使用して、次のユースケースを実行します。 .properties ファイルと .config ファイルでLiferayを構成する Tomcatを構成する アプリとその他のアーティファクトをデプロイする パッチツールを更新する DXPをパッチする スクリプトを実行する ...
Using Localized Messages in an MVC Portlet
Using Localized Messages in an MVC Portlet Liferay's localization framework is for creating localized messages in your MVC portlet. Deploy the Sample Code Then, follow these steps: Download...
PortletMVC4Spring Configuration Files
PortletMVC4Spring Configuration Files A PortletMVC4Spring application has these descriptors, Spring contexts, and properties files in its WEB-INF folder: web.xml → Web application descriptor ...
Remote Applications with Headless APIs
Remote Applications with Headless APIs Available 7.4+ After creating and publishing objects, headless REST APIs are automatically generated. Here you'll see how to integrate these endpoints to...
Using React
Using React Build your own solutions using Liferay and React.
Configuration as Code
Configuration as Code Liferay Self-Hosted Liferay SaaS Liferay PaaS Liferay 7.4 Liferay instance configurations are deployable with client extensions. For example, you can deploy OAuth2...
Packaging Client Extensions
Packaging Client Extensions Liferay Self-Hosted Liferay SaaS Liferay PaaS Liferay 7.4 Client extension projects are built as deployable archives called Liferay Universal File Format Archives...
Categorizing a Configuration
Categorizing a Configuration When you register a configuration interface, the UI for your application is generated in System Settings → Platform → Third Party. If you prefer a different section and...
OAuth Headless Server YAML Configuration Reference
OAuth Headless Server YAML Configuration Reference You can define an OAuth headless server client extension with a client-extension.yaml file. Usage Details This client-extension.yaml file defines...
OAuth User Agent YAML Configuration Reference
OAuth User Agent YAML Configuration Reference You can define an OAuth user agent client extension with a client-extension.yaml file. Usage Details This client-extension.yaml file defines an OAuth...
Configuration Framework
Configuration Framework Setting and Accessing Configurations Categorizing a Configuration Scoping Configurations Portlet Level Configuration Configuration Form Renderer DDM Form Annotations ...
Configuration Model Listener Reference
Configuration Model Listener Reference Use model listeners in your own configurations to listen for events and execute code in response. Creating a model listener requires only three steps: ...
Completely Custom Configuration
Completely Custom Configuration A configuration UI is generated automatically when you create a configuration interface. But in some cases you want a completely custom UI for your configuration....
Field Options Provider
Field Options Provider You can populate a drop-down list manually in the @Meta.AD annotation of the configuration interface. But you can also populate the option labels and values automatically...
OSGi and Modularity
OSGi and Modularity Modularity makes writing software, especially as a team, fun! Here are some benefits to modular development on Liferay: Liferay's runtime framework is lightweight, fast, and...
Module Life Cycle
Module Life Cycle In OSGi, all components, Java classes, resources, and descriptors are deployed via modules (OSGi bundles). The MANIFEST.MF file describes the module's physical characteristics,...
Configuring Dependencies
Configuring Dependencies Liferay provides a container where modules can publish and consume functionality through their Java packages. Modules can leverage packages from other modules or...
Resolving Third Party Library Package Dependencies
Resolving Third Party Library Package Dependencies An application can rely on multiple OSGi modules. Resolving their Java package dependencies can be challenging. In a perfect world, every package...
Exporting Packages
Exporting Packages In OSGi, packages are private by default. You must explicitly exporting a package so other modules can import and use them. Here's how to export packages: Open your bnd.bnd...
DDM Form Annotations
DDM Form Annotations The auto-generated configuration interface UI may be too simplistic for some configurations. You can use the Dynamic Data Mapping (DDM) form annotations to customize your...
Hiding the Configuration UI
Hiding the Configuration UI Liferay generates a configuration UI automatically after a configuration interface deploys. But you may have certain use cases where you want to hide the UI. For...
Job Scheduler UI Reference
Job Scheduler UI Reference Liferay Self-Hosted Liferay PaaS Job Scheduler Triggers View, create, and manage Job Scheduler Tasks. The Job Scheduler Triggers tab lists all tasks added to the...
Contributing to Liferay Development
Contributing to Liferay Development The first thing to do in learning to fix bugs or contributing a feature is to become familiar with how to build the system. The Liferay Portal build system now...
UI Architecture
UI Architecture
Micro Frontends
Micro Frontends Micro frontends extend the concept of microservices to the frontend side of development. You can build a fully-featured and powerful browser application that uses a microservice...
APIs as OSGi Services
APIs as OSGi Services After you've learned what a module is and how to deploy one, you can use modules to define APIs and implement them. Liferay APIs are OSGi services, defined by Java interfaces...
Organizing the Source
Organizing the Source It is important to have a solid understanding of how the Liferay source is organized when working on fixing a bug or adding a new feature to the product. The Liferay Source...
Portlet Level Configuration
Portlet Level Configuration With the configuration framework, you can set your application's configuration for different levels of scope. Where Instance and Site-scoped configurations use...
Configuration Form Renderer
Configuration Form Renderer When you create a configuration interface, a configuration UI is automatically generated. But in some cases you want customize the look and feel of the UI. For example,...
Data Set Sorting
Data Set Sorting Liferay DXP 2024.Q1/Portal GA112 Currently, this feature is behind a release feature flag (LPS-164563). While managing data sets, you can set default sorting rules for Data Sets...
Understanding the Job Scheduler Framework
Understanding the Job Scheduler Framework Liferay Self-Hosted Liferay PaaS Liferay Job Scheduler is a flexible framework built on top of Liferay's Scheduler Engine. You can use it to add, execute,...
Building Liferay Source
Building Liferay Source This section aims to provide instructions for building Liferay Portal from source as quickly as possible. Using a nightly snapshot bundle no longer requires a full build...
Bundle Classloading Flow
Bundle Classloading Flow The OSGi container searches several places for imported classes. It's important to know where it looks and in what order. Liferay DXP's classloading flow for OSGi bundles...
Finding Artifacts
Finding Artifacts To use external artifacts in your project, you must configure their dependencies in your build.gradle Gradle script. Before specifying an artifact as a dependency, you must first...
Importing Packages
Importing Packages You often find yourself in a position of needing functionality provided by another module. To access this functionality, you must import packages from other modules into your...
Module Projects
Module Projects Liferay applications and customizations are OSGi modules: .jar files containing Java code and some extra configuration for publishing and consuming APIs. A module project comprises...
Semantic Versioning
Semantic Versioning Semantic Versioning is a three tiered versioning system for incrementing version numbers based on the degree of API change made in a releasable software component. It's a...
Portal Developer Properties
Portal Developer Properties There are Portal Properties that facilitate development. Liferay's portal-developer.properties file includes all of them. The portal-developer.properties file is enabled...
Specifying Dependencies
Specifying Dependencies You must satisfy all dependencies to compile and deploy a module successfully. After you find the dependency artifacts, add them as dependencies in your Gradle build file....
Fragment Specific Tags and Attributes Reference for Liferay 7.3 and Earlier Versions
Fragment Specific Tags and Attributes Reference for Liferay 7.3 and Earlier Versions Along with standard HTML, CSS, and JavaScript, you can use Liferay-specific tags and attributes to define...
Command Line Gogo Shell
Command Line Gogo Shell If you're in a development environment, you can interact with the module framework locally from the command line. Gogo shell should only be run from the command line in...
表示ページテンプレートの使用
表示ページテンプレートの使用 liferay DXP/Portal 7.3+. 表示ページテンプレートは、専用URLにコンテンツを表示するための構造を定義します。 コンテンツアイテムを作成またはアップロードすると、LiferayはそれにアクセスするためのユニークなフレンドリーURLを生成します。...
表示ページによるコンテンツの公開
表示ページによるコンテンツの公開 表示ページテンプレートを使用して、コンテンツアイテムをフレンドリURLで表示するための再利用可能な動的デザインを作成できます。 テンプレート をデザインした後、そのコンテンツ・タイプを表示するためのデフォルト・テンプレートにしたり、一部のコンテンツ・アイテムだけがそのテンプレートを使用するように手動で設定したりすることができます。...
Configuring Asset Publisher Subscriptions
Configuring Asset Publisher Subscriptions アセットパブリッシャーは、メール購読とRSSフィード購読の2種類のサブスクリプションをサポートしています。 メール購読 ユーザーは、アセットパブリッシャーを購読して、新しいアセットが公開されたときに電子メール通知を受け取ることができます。 最初にこの通知を有効にする必要があります。 次の手順を実行します: ...
Collections and Collection Pages
Collections and Collection Pages This information applies to Liferay DXP 7.3+. In previous Liferay versions, collections were called content sets. For information on content sets, see Liferay DXP...
サイトの最適化
サイトの最適化 トップレベルのSEOを行うことから、サイトのコンテンツを理解して行動すること、あらゆるタイプのユーザーがアクセス可能なサイトを構築することまで、Liferayはサイトの問題を理解して行動するためのツールを提供します。 検索エンジンを最適化 :::: 2 :gutter: 3 3 3 3 ::: ページのフレンドリURLの設定 :link:...
A/Bテスト結果のレビューとテストバリアントの公開
A/Bテスト結果のレビューとテストバリアントの公開 A/Bテストが終了すると、Analytics CloudとLiferay DXPでテスト結果を確認できます。Analytics Cloudは、テスト期間中に 必要信頼度 が達成された場合に勝者を宣言します。テストの必要信頼度を設定する方法については、A/Bテストの作成 を参照してください。 ...
Types of Utility Pages
Types of Utility Pages Utility pages are content pages managed at the site level. Since the default system-level pages are not customizable, you can use site-level utility pages to provide a unique...
Using an OSGi Service
Using an OSGi Service Liferay APIs are readily available as OSGi services. You can access a service by creating a field of that service type and annotating the field with @Reference, like this: ...
Managing Object Entries Using GraphQL
Managing Object Entries Using GraphQL You can use GraphQL to manage custom object entries in Liferay efficiently. This API framework simplifies data interaction and serves as an alternative to REST...
情報テンプレートの使用
情報テンプレートの使用 7.4+で利用可能 情報テンプレートを使用すると、情報フレームワークを実装しているあらゆるアイテムタイプの FreeMarker テンプレートを作成できます。 サポートされているアイテムタイプには、ウェブコンテンツ、ドキュメント、アセット、ブログ、カテゴリー、オブジェクトがあります。...
アセットパブリッシャー表示設定の構成
アセットパブリッシャー表示設定の構成 アセット・パブリッシャー・ウィジェットを使用する場合、ユーザーがコンテンツをどのように表示するかを指定するために、いくつかの表示設定を構成できます。 新規ページの作成 または 既存ページの編集 Add( Add widget icon ) をクリックして、Fragments and Widgetsパネルを開きます。 ...
アセットパブリッシャーウィジェットの使用
アセットパブリッシャーウィジェットの使用 アセットパブリッシャーウィジェットを使用したアセットの表示 アセットパブリッシャーウィジェットでアセットを選択する アセットパブリッシャーの表示設定の構成 アセット・パブリッシャ・サブスクリプションの設定
A/Bテストの作成
A/Bテストの作成 A/Bテストを作成する前に、次の点に留意してください。 デフォルトのエクスペリエンスまたはセグメントにマップされたパーソナライズされたエクスペリエンスのテストを作成できます。 A/Bテストは、一度に1つのページまたはエクスペリエンスに対してのみ作成できます。 実行中のA/Bテストの一部であるエクスペリエンスを編集することはできません。 ...
A/Bテスト
A/Bテスト