什么是什么,是StackOverflowError什么导致它,我应该如何处理它们?
stack-overflow memory-leaks exception-handling out-of-memory
在使用Slick调用程序时,我们如何克服22限制?
我们目前有:
val q3 = sql"""call getStatements(${accountNumber})""".as[Transaction]
Run Code Online (Sandbox Code Playgroud)
问题是我们必须返回超过22列,而Transaction case类不能超过22列,因为当我们执行JSONFormat时,我们得到一个错误:
[error] E:\IdeaProjects\admin\Transaction.scala:59: No unapply or unapplySeq function found
[error] implicit val jsonFormat = Json.format[Transaction]
Run Code Online (Sandbox Code Playgroud)
有什么建议?