2

ポータルサーバー起動時のポートレットの初期化順序を指定したい。

出来ますか?

4

2 に答える 2

5

はい、可能です。

依存ポートレットの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

お役に立てれば。

于 2012-06-26T05:48:15.807 に答える
4

はい、ポートレットの依存関係の定義よりも配置の順序を指定できます。で設定required-deployment-contexts=MyPrevPortletliferay-plugin-package.propertiesます。

于 2012-06-24T16:05:30.570 に答える