我想通过我的UI的http请求写一个表
我只是一名学生实习生,因此我的知识并不那么好。
到目前为止,我真的不知道该怎么做。我知道我将不得不使用@POST,但我怎么能实现它,我的UI中显示的表将写入后端的表?
感谢先进的tipps或帮助!
答案 0 :(得分:0)
在你的servlet中需要写这个来检索参数:
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
HttpSession session = req.getSession();
String nome = req.getParameter("nome");
...
}
在你的jsp页面中你需要使用一个表单,如下所示:
<form action="LoginServlet" method="post">
Name:<input type="text" name="username" /><br />
<br /><input type="submit" value="login" />
</form>