legacy-knowledge-base
公開されました Sep. 10, 2025

データベースからユーザーを削除するためのGroovyスクリプト

written-by

Alexandra Rujzam

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

legacy-article

learn-legacy-article-disclaimer-text

データベースを直接変更することはお勧めできません。 これらの場合に提案されているアプローチは、LiferayのAPIを使用するgroovyスクリプトです。

環境への配慮

  • ライフレイDXP 7.0
  • Liferay DXP 7.1
  • Liferay DXP 7.2

決議

ここでは、 deleteUser メソッドの UserLocalServiceUtilを使用した簡単なスクリプトを示します。 *****long userIDに置き換える必要があります。.

import com.liferay.portal.kernel.service.UserLocalServiceUtil;
import com.liferay.portal.kernel.model.User;

try
{
UserLocalServiceUtil.deleteUser(*****);
}
catch(Exception e)
{
out.println("ERROR is"+e.getMessage());
}

did-this-article-resolve-your-issue

legacy-knowledge-base