Я использую spray-json для сортировки списков пользовательских объектов в JSON. У меня есть следующий класс case и его JsonProtocol.
case class ElementResponse(name: String, symbol: String, code: String, pkwiu: String, remarks: String, priceNetto: BigDecimal, priceBrutto: BigDecimal, vat: Int, minInStock:Int, maxInStock: Int)
object JollyJsonProtocol extends DefaultJsonProtocol with SprayJsonSupport {
implicit val elementFormat = jsonFormat10(ElementResponse)
}
Когда я пытаюсь вставить такой маршрут, как этот:
get {
complete {
List(new ElementResponse(...), new ElementResponse(...))
}
}
Я получаю сообщение об ошибке:
could not find implicit value for evidence parameter of type spray.httpx.marshalling.Marshaller[List[pl.ftang.scala.polka.rest.ElementResponse]]
Возможно, вы знаете, в чем проблема?
Я использую Scala 2.10.1 с распылителем 1.1-M7 и спрей-json 1.2.5