Clojure's transit does not support the Joda time format out of the box. How can I add write support for org.joda.time.DateTime
?
Custom Transit writer for Joda time in Clojure
770 Views Asked by David J. At
2
There are 2 best solutions below
0

To get this to work with ring-middleware-format, do this, using the joda-time-writer
function posted by David J.
(defn wrap-format [handler]
(let [transit-opts {:handlers {org.joda.time.DateTime
joda-time-writer}}]
(wrap-restful-format handler
{:response-options
{:transit-json transit-opts
:transit-messagepack transit-opts}})))
Add this function:
And use it like this: