Skip to content
Snippets Groups Projects
Commit 47e1c9d0 authored by Cam Saul's avatar Cam Saul
Browse files

Tell JSON encoder what to do with BSON IDs

parent 8e2d7f65
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,9 @@
;; Do the same for PG arrays
(add-encoder org.postgresql.jdbc4.Jdbc4Array encode-str)
;; Encode BSON IDs like strings
(add-encoder org.bson.types.ObjectId encode-str)
;; serialize sql dates (i.e., QueryProcessor results) like YYYY-MM-DD instead of as a full-blown timestamp
(add-encoder java.sql.Date (fn [^java.sql.Date date ^com.fasterxml.jackson.core.JsonGenerator json-generator]
(.writeString json-generator (.toString date))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment