2

在 Liferay MVC 项目中,如何portletSession在 JSP 页面中设置并在自定义操作类中检索portletSession

4

1 回答 1

2

在 JSP 中,您不需要做任何事情,因为它是提供的对象之一:

<%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %>
<portlet:defineObjects />
<%
    portletSession.getAttribute(...);
%>

从一个类也不是什么大不了的事,它在你的渲染或动作方法中可用:

PortletSession portletSession = actionRequest.getPortletSession(); // action method
PortletSession portletSession = renderRequest.getPortletSession(); // render method
于 2013-03-18T13:15:49.233 回答