检测开发模式:为生产设置安全 cookie,为开发模式设置不安全

发布于 2024-12-04 11:11:07 字数 155 浏览 0 评论 0原文

我正在使用 GWT 的 Cookie.setCookie 为我的网站设置登录 cookie。我想让它们安全 cookie(我的网站总是通过 https 运行),但开发模式只能通过 http 运行。

设置开关以便不安全代码在开发模式下运行而安全代码在生产环境中运行的最佳方法是什么?

I'm using GWT's Cookie.setCookie to set login cookies for my site. I want to make them secure cookies (my site always runs over https) but development mode can only run over http.

What's the best way to set up a switch so that the insecure code runs in devmode and the secure code runs in production?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾城°AllureLove 2024-12-11 11:11:07

GWT.isProdMode()

  /**
   * Returns <code>true</code> when running in production mode. Returns
   * <code>false</code> when running either in development mode, or when running
   * in a plain JVM.
   */

GWT.isProdMode():

  /**
   * Returns <code>true</code> when running in production mode. Returns
   * <code>false</code> when running either in development mode, or when running
   * in a plain JVM.
   */
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文