PropertyEditorSupport 中的 getAsText() 何时被调用或调用
我正在使用 spring 3 mvc
尝试为我的 initBinder 重写 PropertyEditorSupport 。 setAsText() 工作正常。但我在网上看了一些例子。他们也重写 getAsText() 。
所以当 getAsText() 被调用时。 getAsText() 的用法是什么?任何示例或用例
谢谢
I am using spring 3 mvc
try to rewrite PropertyEditorSupport for my initBinder. setAsText() is working fine. But i have a look some of example online. they override getAsText() too.
So when getAsText() is called. what is usage of getAsText()? any example or use case
thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
getAsText 用于格式化 AbstractPropertyBindingResult 中的字段值(Spring 验证的一部分)。所以我怀疑如果你不使用 Spring Validation,没有 getAsText 不会对你产生影响。
getAsText is used to format a field value in AbstractPropertyBindingResult (part of spring validation). So I suspect that if you don't used Spring Validation, not having getAsText will not impact you.