Capability

Integration

Liferay is designed to be standards-compliant and highly interoperable. Connect Liferay DXP with external systems using SOAP, REST, GraphQL, and more to unite third-party software, legacy systems, and data.

Headless APIs, Remote Apps (Client Extensions), API Builder, and integrations with SSO platforms are some of the examples of the features in this area.

Feature
Deployment Approach
Capability
Liferay Util Tag Library
Liferay Util Tag Library The Liferay Util taglib is used to pull other resources into a portlet or theme. You can use it to specify which resources to insert at the bottom or top of the page's...
公開日: 2024/05/09 18:53
Clay Stickers
Clay Stickers Whereas badges display numbers and labels display short information, stickers are small visual indicators of the content (usually the content type). They can include a small label or...
公開日: 2024/05/09 18:53
Liferay UI Icon Help
Liferay UI Icon Help The icon help tag lets you communicate additional information to your users in an unobtrusive way. It renders as an iconic question mark that provides more information through...
公開日: 2024/05/09 18:53
Liferay UI Icon Lists
Liferay UI Icon Lists An icon list displays icons in a horizontal list, instead of in a pop-up navigation menu like an icon menu. You can see an example of an icon list menu in a message board...
公開日: 2024/05/09 18:53
Liferay UI Icons
Liferay UI Icons The Liferay UI taglibs provide several icons you can include in your apps. To add an icon to your app, use the liferay-ui:icon tag and specify the icon with either the icon,...
公開日: 2024/05/09 18:53
Using Liferay Util Body Bottom
Using Liferay Util Body Bottom The body bottom tag is not a self-closing tag. It lets you add additional HTML or scripts to the bottom of the body tag. content placed between the opening and...
公開日: 2024/05/09 18:53
Using Liferay Util Body Top
Using Liferay Util Body Top The body top tag is not a self-closing tag. The content placed between the opening and closing of this tag is moved to the top of the body tag. When something is passed...
公開日: 2024/05/09 18:53
Using Liferay Util Whitespace Remover
Using Liferay Util Whitespace Remover The whitespace remover tag removes line breaks and tabs from code blocks included between the opening and closing of the tag. Below is an example configuration...
公開日: 2024/05/09 18:53
Creating Service Wrappers
Creating Service Wrappers With Service Wrappers, you can override default service methods to add extra functionality. For example, you may want the value of a field you've added to Liferay's User...
公開日: 2024/07/18 20:39
Customizing JSPs with Dynamic Includes
Customizing JSPs with Dynamic Includes The liferay-util:dynamic-include tag is a placeholder into which you can inject content---JavaScript code, HTML, and more. The example project demonstrates...
公開日: 2024/07/18 20:39
Customizing Localization
Customizing Localization Liferay ships with 55 translations, making it ideal for deployments all over the world. Sometimes, however, you must modify a translation or provide a new one. Here you can...
公開日: 2024/07/18 16:48
Generating Translations Automatically
Generating Translations Automatically Liferay DXP supports 50 languages out-of-the-box. Each locale has its own language properties file containing keys for its language. When you create an...
公開日: 2024/07/18 20:39
Overriding Module Language Translations
Overriding Module Language Translations For Liferay DXP 7.4 U4/Portal 7.4 GA8+, the Language Override tool is the recommended approach. Overriding language translations in specific applications...
公開日: 2024/07/18 20:39
Adding a Language
Adding a Language Liferay ships with over 50 languages out-of-the-box. Translation is complete for many of these languages, and some are still in the translation process. Each language has its own...
公開日: 2024/07/18 20:39
Overriding Global Language Translations with Language Properties
Overriding Global Language Translations with Language Properties Liferay DXP/Portal implements headings, labels, and messages for many locales using language translations. You can override these...
公開日: 2024/07/18 20:39
Overriding OSGi Services
Overriding OSGi Services Liferay's OSGi container is a dynamic environment in which services can be added, removed, or overridden as needed. This framework registers Liferay components with the...
公開日: 2024/07/18 20:39
Using Portlet Filters
Using Portlet Filters Portlet filters intercept requests and responses at the start of each portlet request processing phase so you can add functionality there. This makes them useful for auditing...
公開日: 2024/07/18 20:39
Using Servlet Filters
Using Servlet Filters Servlet filters can both pre-process requests as they arrive and post-process responses before they go to the client browser. You can apply functionality to requests and...
公開日: 2024/10/18 16:07
Fundamentals
Fundamentals Liferay development projects consist primarily of simple .jar files. These contain a few extra configuration files that make them OSGi modules, but they're easily understandable by...
公開日: 2025/01/18 2:48
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...
公開日: 2024/11/22 22:50
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...
公開日: 2024/11/22 22:50
Liferayクラスローダー階層
Liferayクラスローダー階層 すべてのLiferay DXP/Portalアプリケーションは、OSGiコンテナにあります。 DXP/Portalは、アプリケーションサーバーにデプロイされたWebアプリケーションです。 そのモジュールフレームワークのバンドル(モジュール)は、OSGiコンテナにあり、クラスローダーを備えています。...
公開日: 2024/05/09 18:55
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,...
公開日: 2024/11/22 22:50
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...
公開日: 2024/11/22 22:50
UI Architecture
UI Architecture
公開日: 2024/11/22 22:50
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....
公開日: 2024/11/22 22:50
Deploying WARs (WAB Generator)
Deploying WARs (WAB Generator) You can create applications as Java EE-style Web Application ARchive (WAR) artifacts or as Java ARchive (JAR) OSGi bundle artifacts. Bean Portlets, PortletMVC4Spring...
公開日: 2024/05/09 18:55
モジュール性のメリット
モジュール性のメリット Dictionary.comでは、 モジュール性 を、 電子システムまたは機械システムの組み立てのように、個別に異なる機能ユニットを使用することと定義しています。 個別の機能ユニットは モジュール と呼ばれます。 たとえば、NASAのアポロ宇宙船は3つのモジュールで構成されており、それぞれに異なる機能があります。 月着モジュール...
公開日: 2024/05/09 18:55
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...
公開日: 2024/11/22 22:50
アーキテクチャ
アーキテクチャ Liferay DXP/Portalのアーキテクチャには、次の3つの部分があります。 コア: DXPとそのフレームワークをブートストラップします。 コアは、サービス、UIコンポーネント、およびカスタマイゼーションを管理するためのランタイム環境を提供します。 サービス: Java APIおよびWeb APIを介してDXP機能とカスタム機能を公開します。 UI:...
公開日: 2024/05/09 18:55
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...
公開日: 2024/11/22 22:50
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...
公開日: 2024/11/22 22:50
Microsoft Office 365でドキュメントの作成と編集を有効にする
Microsoft Office 365でドキュメントの作成と編集を有効にする Office 365™を使用してドキュメントとメディアファイルを作成および編集する前に、 Azureポータル でアプリケーションに接続するようにDXPを設定する必要があります。 次の手順を実行するには、管理者権限が必要です。 アプリケーションをMicrosoft Identity Platformに登録する...
公開日: 2024/05/09 18:50
音声とビデオのプレビュー用にFFmpegを有効にする
音声とビデオのプレビュー用にFFmpegを有効にする ドキュメントとメディアは、音声ファイルおよびビデオファイルのプレビューを生成するための FFmpeg マルチメディアフレームワークとの統合を提供します。 この統合を使用するには、最初にサーバーにFFmpegをインストールする必要があります。 クラスター環境で作業している場合は、FFmpegを各ノードにインストールする必要があります。 ...
公開日: 2024/05/09 18:50
OpenOffice / LibreOffice統合の有効化
OpenOffice / LibreOffice統合の有効化 OpenOffice と LibreOffice は、Liferayと統合できるオープンソースのプロダクティビティスイートです。 デフォルトでは、Liferayには限られたファイル形式の自動プレビューを生成する PDFBox が含まれています。...
公開日: 2024/05/09 18:50
Googleドライブ との連携
Googleドライブ との連携 Googleドライブでドキュメントの作成と編集を有効にする Googleドライブドキュメントへのリンクを有効にする
公開日: 2024/05/09 18:50
Googleドライブでドキュメントの作成と編集を有効にする
Googleドライブでドキュメントの作成と編集を有効にする Liferay DXPはGoogleドライブとの統合を提供しているため、ドキュメントとメディアアプリケーションを介してGoogleドキュメント、シート、およびスライドを作成および編集できます。 これらのドキュメントタイプのいずれかを追加または編集すると、ファイルを作成できるGoogleの外部エディタにリダイレクトされます。 ...
公開日: 2024/05/09 18:50
SharePointとの連携
SharePointとの連携 SharePointへのLiferayのRESTコネクタの有効化 ドキュメントとメディアでのSharePointリポジトリの作成
公開日: 2024/05/09 18:50
ドキュメントとメディアのストレージクォータを設定する
ドキュメントとメディアのストレージクォータを設定する data.limit.dl.storage.max.sizeポータルプロパティを有効にすることで、ドキュメントとメディアでストレージクォータを定義できます。 このプロパティの値を定義すると、定義されたクォータを超えるアップロードの試行は失敗し、エラーメッセージが表示されます。...
公開日: 2024/05/09 18:50
ドキュメントとメディアでのSharePointリポジトリの作成
ドキュメントとメディアでのSharePointリポジトリの作成 SharePoint OAuth2設定 を追加すると、それを使用して、SharePointライブラリにマウントされるドキュメントとメディアにリポジトリを作成できます。 次に、以下の手順を実行します。 サイトまたはアセットライブラリでドキュメントとメディアアプリケーションを開きます。 追加(Add...
公開日: 2024/05/09 18:50