ICEFaces + Liferay:我创建了两个war文件firstApp.war和secondApp.war文件并部署在liferay上。我想实现,当我单击 firstApp.war 应用程序页面上的提交按钮时,firstAppBacking bean 应该在 public-render-parameter 中设置一些值,以便我可以在 secondApp.war 应用程序中获得该值,例如 IPC。请告诉我如何在 firstAppText 中设置值。
<portlet-app ....>
<portlet>
<portlet-name>firstApp</portlet-name>
<display-name>First App</display-name>
<portlet-class>com.icesoft.faces.webapp.http.portlet.MainPortlet</portlet-class>
<init-param>
<name>com.icesoft.faces.VIEW</name>
<value>/jsp/firstApp.iface</value>
</init-param>
....
**<supported-public-render-parameter>firstAppText</supported-public-render-parameter>**
</portlet>
<public-render-parameter>
<identifier>firstAppText</identifier>
<qname xmlns:x="http://www.liferay.com/public-render-parameters">x:firstAppText</qname>
</public-render-parameter>