Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何文档详细说明JsonProperty命名约定是什么?好像我声明@JsonProperty("id")什么可以和不能放在括号内?
JsonProperty
@JsonProperty("id")
任何事物。JSON 生成器本身将转义奇怪或错误的字符(如换行符,不应出现在 JSON 字符串中)。但是你显然应该避免使用奇怪的字符,因为它会让解析你的 JSON 的人更难理解它的含义。
人们只是在其中使用骆驼案例或蛇案例属性名称。