Bengt Brodersen
Bengt Brodersen
Would be nice if you can create a PR with some suggestions for improvements
Just drop me a message If I can help somehow.
I've adjusted the other examples a little and add JsonParser Implementations for kotlinx.serialization, Gson and Jackson ```kotlin package me.qoomon.examples import com.fasterxml.jackson.databind.ObjectMapper import com.google.gson.Gson import kotlinx.serialization.KSerializer import kotlinx.serialization.json.Json import kotlinx.serialization.json.JsonConfiguration import...
@brezinajn I agree
here is my latest version https://gist.github.com/qoomon/70bbbedc134fd2a149f1f2450667dc9d it now supports json field access by json path
I think it is because of the mapping from string to var char, it should rather be mapped to TextColumnType(). May have a look at my implementation https://gist.github.com/qoomon/70bbbedc134fd2a149f1f2450667dc9d This is...
@toastyblast I just verified that it is compiling. I don't know what's going wrong on you side. However I had another idea what might causing your problem. Do you teach...
you could make use of this lib https://github.com/gkopff/gson-jodatime-serialisers or do it on your own like this ```kotlin GsonBuilder() .registerTypeAdapter(LocalDateTime::class.java, object : JsonSerializer { override fun serialize( src: LocalDateTime, typeOfSrc: Type,...