我正在尝试使用 Jackson 注释来重命名序列化过程中产生的一些 json 标签。注释都编译得很好,当我运行时,杰克逊序列化工作,除了所有杰克逊注释被完全忽略。即使是@JsonIgnore 或@JsonProperty 之类的基本功能也对json 响应没有影响。我在构建路径中拥有的库是:
jsr311-qpi-1.1.1.jar
jackson-[core|databind|annotations]-2.2.0.jar
我在 Eclipse 中运行 jetty 外部程序,外部程序设置为:
Location: .../apache-maven-2.2.1/bin/mvnDebug.bat
working Directory: ${workspace_loc:/ohma-rest-svr}
Arguments: jetty:run
远程 Java 应用程序配置设置为:
Host: localhost
Port: 8000
没有错误消息可以处理,我有点失去尝试的东西。任何想法,将不胜感激。
这是我需要序列化的类的一些代码示例:
@XmlRootElement(name="ads-parameter")
public class DefineParameterResponse {
private Date _createdAt = new Date();
@JsonProperty("created-at")
@JsonFormat(shape=JsonFormat.Shape.STRING, pattern="yyyy-MM-dd,HH:00", timezone="CET")
@XmlElement
public String getCreatedAt() {
return new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'").format(_createdAt);
}
@JsonProperty("created-at")
public void setCreatedAt(Date createdAt) {
this._createdAt = createdAt;
}
private String _dataTitle1 = "Default Title1";
@XmlElement
@JsonProperty("data-title-1")
public String getDataTitle1() {
return _dataTitle1;
}
@JsonProperty("data-title-1")
public void setDataTitle1(String dataTitle1) {
this._dataTitle1 = dataTitle1;
}
@XmlElement
@JsonProperty("data-title-2")
public String getDataTitle2() {
return _dataTitle2;
}
@JsonProperty("data-title-2")
public void setDataTitle2(String dataTitle2) {
this._dataTitle2 = dataTitle2;
}