如何使 SimpleFormController 使用 HTTPS 显示表单
这是怎么做到的?我有一个视图,在某些情况下我需要使用 HTTP 显示,而在其他情况下需要使用 HTTPS。控制器使用 SimpleFormController。
How is this done? I have a view which in certain conditions I need to display using HTTP and in other cases HTTPS. The controller is using SimpleFormController.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
控制器不关心协议。只需将 .jsp 中的链接/表单目标指向
https://site.com/context/controller
即可工作(前提是您已成功设置 servlet 容器的 https)The controller doesn't care about the protocol. Simply make the links / form targets in your .jsp to point to
https://site.com/context/controller
and it will work (provided you have successfully setup https of the servlet container)