我只是从Servlet开始,并设法拥有一些Servlet,它们充当单独的URL,用于填充数据库以进行一些虚拟测试。形式的东西:
public class Populate_ServletName extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
resp.setContentType("text/plain");
//Insert records
//Print confirmation
}
}
我有大约6个这样的servlet,我想按顺序执行。我当时在考虑使用setLocation设置要重定向的下一页,但不确定这是否正确,因为重定向应该在插入记录后进行。具体来说,我正在寻找这样的东西:
public class Populate_ALL extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
resp.setContentType("text/plain");
//Call Populate_1
//Call Populate_2
//Call Populate_3
//...
}
}
有什么建议么?
翻阅古今