1

我需要在 java servlet 中创建基于时间的 cookie。基于时间的 Cookie 在 servlet 中创建,持续时间为 10 分钟。cookie 未从浏览器(Firefox、Chrome)的 cookie 列表中删除/移除

谁能告诉我如何在超时后自动从浏览器中删除 cookie?

提前致谢。

4

1 回答 1

0

In your servlet you can setMaxAge(0), make sure you don't forget to addCookie to the response after setting the max age to 0.

于 2013-08-16T02:15:03.630 回答