Scala 提出几个 https 问题
我对 Scala Lift 中的 https 有几个问题:
How can I set for my web application use only https protocol?
我必须为现有应用程序重写一些代码才能使用 https 吗?
请求响应周期是否发生变化或者没有任何不同?
在哪里可以找到使用 https 的优秀 scala lift 开源项目或者只是为了查看框架的高级使用?
谢谢。
I have few questions about https in Scala Lift:
How can I set for my web application use only https protocol?
Must I rewrite some code for existing application for using https?
Is request response cycle changes or there is no any differents?
Where to find good scala lift open source project using https or just to see advanced use of framework?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
需要在 servlet 容器(例如 Jetty 或 Tomcat)中启用 HTTPS。它与您的网络应用程序没有太大关系。然后,您需要告诉 servlet 容器对部署描述符中的部分或所有页面使用 HTTPS。您的 web.xml 文件如下所示:
HTTPS needs to be enabled in your servlet container, such as Jetty or Tomcat. It doesn't have much to do with your web application. Then you need to tell the servlet container to use HTTPS for some or all pages in the deployment descriptor. This is what your web.xml file will look like: