How do I configure the date format independently for each of my date fields?
For example, let's say I have a CustomerOrder class with more than 1 java.util.Date fields in it.
I need to be able to render like this:
<customerOrder>
<orderDate>2013-01-04T20:50:42.769Z</orderDate>
<user>Bob</user>
<state>CO</state>
<estShipDate>2013-01-04</estShipDate>
</customerOrder>
So one of the dates may not care about the hh:mm:ss.
i.e. I cannot format every date the same way.
Any ideas?
This is my technology stack:
- Tomcat 7
- Jersey 1.16
- Enunciate 1.26.2
- Spring 3.1.2
- Hibernate 4.1.7
- JPA 2.0.3
-
Independently configure date format for XML/JSON serialization (1 messages)
- Posted by: Will Bracken
- Posted on: January 05 2013 13:52 EST
Threaded Messages (1)
- problem by club stork on January 18 2013 02:29 EST
-
problem[ Go to top ]
- Posted by: club stork
- Posted on: January 18 2013 02:29 EST
- in response to Will Bracken
i have the same problem too..