我试图阻止 Scala 的属性之一case class
被序列化。我已经尝试用通常的方式注释有问题的属性,@JsonIgnore
并且我还尝试@JsonIgnoreProperties(Array("property_name"))
将case class
. 两者似乎都没有达到我想要的。
这是一个小例子:
import org.json4s._
import org.json4s.jackson._
import org.json4s.jackson.Serialization
import org.json4s.jackson.Serialization.{read, write}
import com.fasterxml.jackson.annotation._
object Example extends App {
@JsonIgnoreProperties(Array("b"))
case class Message(a: String, @JsonIgnore b: String)
implicit val formats = Serialization.formats(NoTypeHints)
val jsonInput = """{ "a": "Hello", "b":"World!" }"""
val message = read[Message](jsonInput)
println("Read " + message) // "Read Message(Hello,World!)
val output = write(message)
println("Wrote " + output) // "Wrote {"a":"Hello","b":"World!"}"
}