Is there any way to use internal Finatra JSON parser in a standalone mode, at present Finatra internally takes care of serialization/deserialization but I was wondering if I could leverage same json parsing library in other parts of the code in a standalone mode. This will obviate the need for specialized JSON parser like circe which I am currently using.
case class querypooltabdto(@RouteParam poolid:String)
get("/pool/life")
{ request : querypoolgetdto =>
}
If anyone has figured this out, then would appreciate if you could share the library/class name with code example on how to do it. Thanks a lot.