我在portlet.xml中添加以下行

<init-param>
  <name>add-process-action-success-action</name>
  <value>false</value>
</init-param>


但是它不起作用...请帮帮我..

最佳答案

在您的控制器操作中尝试此操作

// Hiding the default Error Message
    PortletConfig portletConfig = (PortletConfig) request.getAttribute(JavaConstants.JAVAX_PORTLET_CONFIG);
    LiferayPortletConfig liferayPortletConfig = (LiferayPortletConfig) portletConfig;
    SessionMessages.add(request, liferayPortletConfig.getPortletId()
                    + SessionMessages.KEY_SUFFIX_HIDE_DEFAULT_ERROR_MESSAGE);

08-28 18:27