我正在尝试重定向到 ActionRequest 中的另一个 portlet,我需要发送一个参数。当我将它添加到响应中时,它会忽略它。
@ActionMapping(params = { "action=create" })
public void create(ActionRequest request, ActionResponse response,
@Valid @ModelAttribute("formObject") FormObject formObject,
BindingResult result) throws IOException, RepositoryException,
PortalException, SystemException {
// do some stuff and then
response.setParameter("action", "myAction");
response.sendRedirect("/next-portlet");
}
myAction
不幸的是,它没有传递给下一个 portlet。请问我怎样才能做到这一点?