Default date format in Spring WebFlow is "yyyy-MM-dd".
How to change to another format? "dd.mm.yyyy" for example. Thx.
|
Default date format in Spring WebFlow is "yyyy-MM-dd". How to change to another format? "dd.mm.yyyy" for example. Thx.
| ||||
|
feedback
|
|
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).
| |||
|
feedback
|
|
I think like this:
| |||
|
feedback
|