struts2不再接受http地图参数?
在struts2中,我利用了struts2中内置的OGNL,将我的输入命名为 其中转到 getters/setters
getBag().get("item").setProperty(value)
我已经升级到 struts 2.2.1,突然这些不再工作: getter 永远不会被调用。
互联网对在参数中使用 OGNL 完全保持沉默,就好像没有人制作过复杂的表单一样。
如何取回我的地图参数?
In struts2, I took advantage of built-in OGNL in struts2, naming my inputs like <input name='bag["item"].property'>
Which went to getters/setters getBag().get("item").setProperty(value)
I've upgraded to struts 2.2.1, and suddently those no longer work: the getter never gets called.
The internet is utterly silent on using OGNL in parameters, as if nobody ever made complex forms.
How do I get my map-parameters back?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,他们加强了对参数名称的限制以提高安全性。
所以我必须添加到我的 struts.xml 中:(
我的参数名称中有“s 和 /s”)
此后文件上传停止工作(拦截器堆栈很疯狂),所以我也必须明确添加它。
更新:这些天我强烈建议使用 JSON 来传递复杂的结构,而不是丰富的 OGNL 表单。当然你需要一些JS。
It turns out that they hardened restrictions on parameter names to boost security.
So I had to add to my struts.xml:
(I had "s and /s in my parameter names)
File upload ceased working after that (interceptor stacks are madness), so I had to add it explicity either.
Update: These days I strongly suggest using JSON to pass complex structures instead of rich OGNL forms. Of course you would need some JS.