Dustin Stanley
Dustin Stanley
I am also running into this (or at least it's very similar). I am not using Joda Time but instead just standard java.util.Date objects. Unless I format the date string...
It doesn't seem like looking for a static parse method would be enough, at least in the case of the Date class, where the constructor(string) internally calls Date's static parse(string)...
I suggested Jackson because we can use it now to parse dates with a specific format when processing request/response bodies. I was assuming that if your API used a specific...