如何将参数传递给Google App Engine servlet?

时间:2010-02-07 03:46:06

标签: java google-app-engine servlets

我创建了一个servlet,用于在指定条件下发送电子邮件警报。用户可以通过主页面上的gui设置警报,但我想让他们在每个发送的电子邮件中取消注册。我想在电子邮件中包含这样的内容:

If you'd like to unregister for this alert, please go to http://mysite.com/myUnregisterServlet?id=uniqueID

其中uniqueID是警报唯一键(可以为1封电子邮件设置许多不同的警报)。

我怎样才能实现这一点,或者这个效果呢?谢谢!

1 个答案:

答案 0 :(得分:4)

@Override
public void doGet(final HttpServletRequest req, final HttpServletResponse resp)
  throws IOException, ServletException
{
  final String id = req.getParameter("id");
  ...
}