ポータルサーバー起動時のポートレットの初期化順序を指定したい。
出来ますか?
はい、可能です。
依存ポートレットのrequired-deployment-contexts
プロパティを設定することで、プラグインの展開順序を指定できます。liferay-plugin-package.properties
例:
ポートレットmy-custom-portlet
が他のプラグインに依存している場合は、次のように指定できます。
1) 単一の依存関係の場合required-deployment-contexts
:
required-deployment-contexts=my1-other-portlet
2) 複数の場合required-deployment-contexts
:
required-deployment-contexts=\
my-other-theme,\
my1-other-portlet,\
my-other-hook,\
my2-other-portlet
お役に立てれば。
はい、ポートレットの依存関係の定義よりも配置の順序を指定できます。で設定required-deployment-contexts=MyPrevPortlet
しliferay-plugin-package.properties
ます。