Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的公司正在运行许多应用程序,其中之一是 liferay 门户。liferay portlet 由许多插件(portlet、主题、钩子)组成。
现在我要开发一个应用程序,它会显示 liferay-server 的状态。是否启动并运行?以及其中部署了所有 portlet 的内容。
我们将 Liferay 与 tomcat 服务器一起使用
liferay 中是否有任何方法可以确定在其中部署了哪些自定义 portlet?
你会得到所有 portlet 的列表:
PortletLocalServiceUtil.getPortlets();
为了观察 liferay-server 的状态,开发一个带有 Web 服务接口的小型 portlet 很有用。