在 formbackingobject() 正确填充某些表单字段后,在 bindAndValidate() 上清除了一些表单字段,Spring MVC

发布于 2024-11-02 20:30:37 字数 254 浏览 0 评论 0原文

我正在处理一些现有代码,其中控制器覆盖 formbackingobject 方法。

从 formbackingobject 返回的对象已正确填充,但当它到达 jsp 时,某些字段为空。我做了一些调试,发现一些字段数据在 BaseCommandController 类、bindAndValidate 方法中被清除,特别是在 binder.bind(request); 行中被清除。我找不到任何可以更改此数据的验证器。

知道如何清除这些字段以及为什么采用这种方法。

I m working on some existing code where the controller overrides the formbackingobject method.

the object returned from the formbackingobject is populated correctly, but when it reaches the jsp some fields are being blank. I did some debugging and I found that some of the fields data is cleared in the BaseCommandController class, in the bindAndValidate method, and specifically in the line binder.bind(request); i m not able to find any validator where this data would be changed.

Any idea how those fields get cleared and why it that method.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人生百味 2024-11-09 20:30:37

验证器不应该是更改对象的人。在绑定步骤之后,您的对象将具有与请求参数中的值关联的值。

The validators shouldn't be the ones changed your object. Your object would have values associate with the values in the request parameters after binding step.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文