使 liferay portlet 不可实例化

发布于 2024-11-25 01:21:11 字数 65 浏览 1 评论 0原文

如何使我的 portlet 在 liferay 实例中不可实例化。我在论坛上读过相关内容,但没有提到如何做到这一点。

How can I make my portlet non instanceable accross the liferay instance. I have read about it in the forum but there was no mention of how to do it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅浅 2024-12-02 01:21:11

来将 portlet 指定为不可实例化

<liferay-portlet-app>
    ...
    <portlet>
        ...
        <instanceable>false</instanceable>
        ...
    </portlet>
    ...
</liferay-portlet-app>

您可以通过放入文件
liferay-portlet.xml

根据 dtd (链接了 dtd 版本 5.2,不过应该没有太大变化)

也可以看看这里
Liferay 文档

You can specify a portlet as non instanceable by putting

<liferay-portlet-app>
    ...
    <portlet>
        ...
        <instanceable>false</instanceable>
        ...
    </portlet>
    ...
</liferay-portlet-app>

in the file
liferay-portlet.xml

Beware of the right order of tags, according to the dtd (linked the dtd version 5.2, shouldn't have changed much though)

Also have a look here
Liferay docu

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文