我正在使用谷歌应用引擎任务队列。这是我的第一次。我找到了一个教程,但遇到了一些问题。以下是我用来检查任务队列的两个servlet:
public class GAEJSignupSubscriberServlet extends HttpServlet {
private static final Logger _logger = Logger.getLogger(GAEJSignupSubscriberServlet.class.getName());
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
resp.setContentType("text/plain");
resp.getWriter().println("Hello, world");
String strCallResult = "";
resp.setContentType("text/plain");
try {
String strEmailId = req.getParameter("emailid");
_logger.info("Got a Signup Subscriber Request for Email ID : " + strEmailId);
//
// PUT YOUR TASK CODE HERE
//
if(strEmailId.equals("mh")){
System.out.println("email-id" + strEmailId);
}
strCallResult = "SUCCESS: Subscriber Signup";
_logger.info(strCallResult);
resp.getWriter().println(strCallResult);
}
catch (Exception ex) {
strCallResult = "FAIL: Subscriber Signup : " + ex.getMessage();
_logger.info(strCallResult);
resp.getWriter().println(strCallResult);
}
}
@Override
public void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
doGet(req, resp);
}
}
第二个servlet是:
public class GAEJCreateTaskServlet extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
this.doPost(req, resp);
}
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
resp.setContentType("text/plain");
resp.getWriter().println("Hello, world");
String strCallResult = "";
resp.setContentType("text/plain");
try {
//Extract out the To, Subject and Body of the Email to be sent
String strEmailId = req.getParameter("emailid");
//Do validations here. Only basic ones i.e. cannot be null/empty
if (strEmailId == null) throw new Exception("Email Id field cannot be empty.");
//Trim the stuff
strEmailId = strEmailId.trim();
if (strEmailId.length() == 0) throw new Exception("Email Id field cannot be empty.");
//Queue queue = QueueFactory.getDefaultQueue();
Queue queue = QueueFactory.getQueue("subscription-queue");
queue.add(TaskOptions.Builder.withUrl("/gaejsignupsubscriber").param("emailid",strEmailId));
strCallResult = "Successfully created a Task in the Queue";
resp.getWriter().println(strCallResult);
}
catch (Exception ex) {
strCallResult = "Fail: " + ex.getMessage();
resp.getWriter().println(strCallResult);
}
}
@Override
public void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
doGet(req, resp);
}
}
我正在使用以下URL调用GAEJCreateTaskServlet:
http://localhost:8080/gaejcreatetask?emailid=romin@rocketmail.com
现在的问题是,当我调用此url时,我看到该任务已创建的输出,但在开发控制台中,我无法在队列中看到任何任务。如果我从两个servlet中删除doPost函数,那么我在队列中看到任务,但是当我运行它时没有任何事情发生,任务仍然存在。为什么会这样发生,我该如何解决这个问题呢。提前谢谢。
答案 0 :(得分:0)
很可能你看不到任务,因为它已经执行了。检查日志(开发中的控制台或生产中管理控制台上的日志记录页面),以查看任务处理程序(如果有)抛出的异常并进行修复。
答案 1 :(得分:0)
不确定是否应该使用此doGet方法。你有2个具有相同的签名,但这不能解决你的问题,如果你说它打印成功消息。
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
this.doPost(req, resp);
}
答案 2 :(得分:0)
GAEJSignupSubscriberServlet无需设置响应内容类型,也无需写入响应。当从任务调用servlet时,从未看到响应,想象它被发送到/ dev / null。您应该从servlet登录。
GAEJSignupSubscriberServlet不需要任何doGet方法,只需要doPost,因为默认情况下使用方法POST创建任务。如果您更喜欢使用GET,那么使用方法配置TaskOptions(TaskOptions.Method.GET)