问题:我无法在Struts2 Portlet的ActionClass中将windowState设置为Exclusive,获得以下异常:"actionresponse cannot be obtained in render phase".
下面是我的Action Class的方法processRequest()方法中的代码片段:
ActionResponse actionResponse = PortletActionContext.getActionResponse();// Exception occurs here!
actionResponse.setWindowState(LiferayWindowState.EXCLUSIVE);
如何确保获取actionResponse对象并在我的Action类中将windowState设置为Exclusive。