我有以下代码提交带有get机制的表单:
ExternalContext extCtx = FacesContext.getCurrentInstance().getExternalContext();
HttpSession session = (HttpSession) extCtx.getSession(false);
String formAction = obj.getRedirectURL();
session.setAttribute("formAction", formAction);
session.setAttribute("param1", param1);
session.setAttribute("param2", param2);
extCtx.redirect(formAction);
如何使用POST机制提交相同的请求。