Struts 中的 https 操作
我使用 html:form
action = "someAction"
来引用 struts-config 文件中的操作。我想将该操作作为 https 进行,但显然我无法替换像 https://webserver/context/abc 这样的绝对路径.do 与 html:form
中的 someAction
。只是想知道我是否可以设置一个属性或参数来将该表单提交到 https url?
谢谢
I am using html:form
action = "someAction"
to refer to an action in struts-config file. I wanted to make that action as https but apparently I cannot replace an absolute path like https://webserver/context/abc.do with someAction
in html:form
. Just wondering is there a property or parameter I can set to make that form submission to an https url?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用 Struts 1.x 执行类似操作,您需要使用 sslext 扩展来执行此操作。这是一个示例: http://www.devarticles.com/ c/a/Java/Securing-Struts-Applications/7/
You can't do something like that with Struts 1.x, you will need to use sslext extension to do so. Here's an example: http://www.devarticles.com/c/a/Java/Securing-Struts-Applications/7/