Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 servlet 中,我有这一行
CookieManager.getRequestCookieValue(request, "app-openid-identifier"); CookieManager.getRequestCookieValue(request, "app-openid-uniqueid");
在我的 gwt 客户端复合文件中,如何为“app-openid-identifier”设置 cookie 并执行“get”来调用 servlet?
在您的 GWT 应用程序中,您可以使用:
com.google.gwt.user.client.Cookies.setCookie("app-openid-identifier","some value");
对于 GET 请求,请使用:
com.google.gwt.http.client.RequestBuilder
或者,如果可能,请尝试使用 RPC 调用。