在 Scala 2.9 中,我将使用以下命令注释案例类import scala.annotation.target.field
:
case class UserAuth(
@(JsonProperty@field)("email")
val email: String,
@(JsonProperty@field)("password")
val password: String
)
在 2.10 中,我去编译一个类,我需要使用import scala.annotation.meta.field
但突然它像疯了一样抛出编译器错误。这是Scala案例类注释的正确用法还是我可以恢复为简单@JsonProperty("email")
?