JetBrains / Exposed

Kotlin SQL Framework
http://jetbrains.github.io/Exposed/
Apache License 2.0
8.05k stars 676 forks source link

docs: EXPOSED-313 JSON columns support libraries other than kotlinx.serialization #2041

Closed bog-walk closed 3 months ago

bog-walk commented 3 months ago

The current docs (and old Wiki) detail kotlinx.serialization support for JSON columns before mentioning that the underlying json() accepts any generic serialization/deserialization combo. This gives the wrong impression that it is not possible to use libraries like Jackson or GSON instead.

The docs now explain clearly that the choice of JSON serialization/deserialization library is left to the user and also includes a comparative example of column definition with Jackson.