Scala、Json 和 Spring Boot Rest

Posted

技术标签:

【中文标题】Scala、Json 和 Spring Boot Rest【英文标题】:Scala, Json & Spring Boot Rest 【发布时间】:2018-08-24 18:30:02 【问题描述】:

我正在根据以下建议使用 Spring Boot 和 Scala 构建 Rest API。我成功地调用了 Scala 中的方法,但案例类没有按照设计的方式工作。

当我尝试使用 net.liftweb.json 创建 Json 时,我得到了额外的字符串 "$outer":。我不想在我的输出中添加这个额外的字符串。

请注意,spring boot 需要的是类而不是对象。我怀疑这可能是一个问题。你能帮我解决这个问题吗?

我的案例类如下所示:

case class BasicSrch(size: String, query: Match)

错误输出

"$outer":,"size":"10","query":"$outer":,"match":"$outer":,"_all":"$outer":,"query":"SNOW","operator":"and"

预期输出

"size":"10","query":"match":"_all":"query":"VALLE","operator":"and"

【问题讨论】:

【参考方案1】:

如果您将 UTF-8 编码的 JSON 写入字节数组或 OutputStream,请尝试 jsoniter-scala:https://github.com/plokhotnyuk/jsoniter-scala

除了在案例类的主构造函数中定义的字段外,它不会序列化任何其他字段。

【讨论】:

我没有看到更多信息来获得我的问题的答案。你能帮忙指出哪一个可以解决我的问题。我已经开发了在独立 jar 中按预期工作的代码。将 Rest API 与 Spring Boot 集成后产生的问题。

以上是关于Scala、Json 和 Spring Boot Rest的主要内容,如果未能解决你的问题,请参考以下文章

idea中使用spring boot + scala快速开发部署

Spring boot结合Kafka的Demo

Scala/Golang/Java/Spring boot那些事儿 | 高可用架构日报第3期

Spring Boot - Thymeleaf 和 Json 模板

Spring Boot中的JSON技术

Spring boot与Jackson ObjectMapper