作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对象:
@XmlRootElement
public class AccountSyncResponse
{
private String Result;
private String Value;
public AccountSyncResponse() {}
public String getResult() {return Result;}
public void setResult(String Result) {this.Result = Result;}
public String getValue() {return Value;}
public void setValue(String Value) {this.Value = Value;}
}
休息网络服务:
@POST
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public AccountSyncResponse excute(AccountSyncRequest ASReq)
{
AccountSyncResponse ASRes = new AccountSyncResponse();
return ASRes;
}
结果是{"result":"Create","value":"123456"}
我需要字段名称的首字母大写{"Result":"Create","Value":"123456"}
如何控制生成的 json 字符串中的字段名称?
最佳答案
您可以使用@XmlElement
如下图:
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class AccountSyncResponse {
@XmlElement(name = "Result")
private String result;
@XmlElement(name = "Value")
private String value;
// Default constructor, getters and setters
}
或者,您可以使用 @XmlElement
注释 getter (那么 @XmlAccessorType
注释就不是必需的)。
除了 JAXB 注释之外,您可能还需要考虑 Jackson。它是一个流行的 Java JSON 解析器,can be used with Jersey 。然后你可以使用@JsonProperty
相反(但是 Jackson 也可以使用 JAXB 注释)。
对于 Jackson,根据您的需要,您可以使用 PropertyNamingStrategy
如PropertyNamingStrategy.UpperCamelCaseStrategy
.
关于java - 将对象转换为json控制字段名称大写首字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48282398/
概述 CentOS Stream 成立于 2019 年,是“RHEL 下一步的滚动预览”。Red Hat 首席技术官 Chris Wright 和 CentOS 社区经理 Rich Bowen 各
我有一个使用 Mesosphere DC/OS 编排选项进行配置的 Azure 容器服务 (ACS) 集群。我可以在 Marathon UI 中创建一个应用程序。 但是,当我通过 Marathon U
我是一名优秀的程序员,十分优秀!