如何更改 StringToDate 中的默认格式? Spring WebFlow
Spring WebFlow 中的默认日期格式是“yyyy-MM-dd”。
如何更改为其他格式?例如“dd.mm.yyyy”。
Default date format in Spring WebFlow is "yyyy-MM-dd".
How to change to another format? "dd.mm.yyyy" for example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
抱歉发晚了,但这就是你必须做的。 Spring Webflow 进行自定义数据绑定。它与 Spring MVC 的做法类似。但区别在于它处理它的位置。 Spring MVC 在控制器级别处理它(使用 @InitBinder )。
Spring webflow 在绑定级别上执行此操作。在执行转换之前,Webflow 会将所有参数值绑定到对象,然后验证表单(如果 validate="true"),然后在成功验证时调用转换。
您需要做的是让 webflow 更改它绑定日期的方式。您可以通过编写自定义转换器来做到这一点。
首先,您需要一个转换服务:
Webflow 将使用此服务来确定需要考虑哪些特殊绑定。现在只需编写您的特定日期活页夹(请记住,webflow 默认有一个日期活页夹,您只需覆盖它即可)。
Sorry for the late post but here is what you have to do. Spring Webflow does custom Data Binding. Its similar to how Spring MVC does it. The difference though is where it handles it. Spring MVC handles it on the controller level ( using the @InitBinder ).
Spring webflow does it on the binding level. Before executing a transition webflow will bind all parameter values to the object then validates the form (if validate="true") then invokes the transition on a successful validation.
What you need to do is to get webflow to change the means in which it binds a Date. You can do this by writing a custom converter.
First you will need a conversion service:
Webflow will use this service to determine what special binding needs to be accounted for. Now just write your specific date binder (keep in mind webflow defaults a date binder you will just override it).
我通过创建这个 bean 实现了这一点:
像这样注册 bean:
然后引用者:
并且:
使用此配置,它对我来说工作得很好。我希望它有帮助。
I achieved that by creating this bean:
Registered the bean like this:
Then referenced by:
And:
With this configuration it works fine for me. I hope it helps.
我想一定是这样的:
I think it must be like this: