使用条纹进行验证会导致绑定值被删除
我正在使用 Stripes,并且正在验证下拉框的值以确保用户选择一个选项。 初始加载时,所有数据都存在,但是一旦表单中的验证启动,加载时在操作 bean 中设置的数据就会丢失。这包括我正在验证的原始列表。
我只是在 jsp 中使用,并将操作 bean 中的字段注释为 @Validate(required=true)。
我错过了一些简单的事情吗?
干杯
I'm using Stripes and I am validating the values of a drop down box to ensure the user selects an option.
On initial load all data is present, but once the validation kicks in the form loses the data that was set up in the action bean on load. This includes the original list I am validating against.
I'm simply using in the jsp, and annotating the field in the action bean as @Validate(required=true).
Am I missing something simple?
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
修好了。
根据 Stripes 最佳实践,我应该使用 @Before 方法来预填充域对象。
手册
Fixed it.
I should use @Before methods to pre-populate domain objects, as per the Stripes best practice.
manual