检测开发模式:为生产设置安全 cookie,为开发模式设置不安全
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GWT.isProdMode()
:GWT.isProdMode()
: