I have a small spring(mvc) web application. This application has dependency on one scala module, which has a case class
MessageCommand. I want to convert the JSON String into MessageCommand Case class using Jackson
.
Is this possible?
I am using Spring 4, Jackson-asl 1.9, Scala 2.11 Case class.
Well you can. But you need to tweak some things in case class:
If you cannot tweak the case class, then it gets a bit difficult and untidy