今天我使用 servlet 从 HTML 页面接收 POST,然后重定向到我的 JSF 页面。
这是我的实际 Servlet:
public class CommInServlet extends HttpServlet {
private String reportKey;
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
req.getSession(true).setAttribute("reportKey", req.getParameter("reportkey"));
req.getRequestDispatcher("main.xhtml").forward(req, resp);
}
}
HTML 帖子页面:
<html>
<head />
<body>
<form action="Filtro" method="post">
<input type="text" size="120" name="reportkey" value="XXXXXXXXXXXX" />
<input type="submit" value="doPost" />
</form>
</body>
</html>
是否可以直接发布到我的 JSF 页面(ManagedBean)?如何?我想将 Servlet 替换为……更好的东西。