これらのプロパティがシリアル化されないようにしようとしていますが、なんらかの理由で何をしてもシリアル化されてクライアントに送信されます。just を@JsonIgnoreProperties({"doBefore","doAfter","doAfterComplete"})
使用してみました 、getter だけを使用して@JsonIgnore
みました 、両方を一緒に試しましたが、違いはないようです。私のクラスは次のようになります。
@JsonIgnoreProperties({"doBefore","doAfter","doAfterComplete"})
public class Action
{
//for reordering actions with the default actions
private String doBefore;
private String doAfter;
private String doAfterComplete;
private String eventId;
private List<ActionArgument> arguments;
//action to perform when this action is done
private List<Action> onCompleteActions;
public Action() {}
public Action(String eventId, List<ActionArgument> arguments, List<Action> onCompleteActions)
{
this.eventId = eventId;
this.arguments = arguments;
this.onCompleteActions = onCompleteActions;
}
public String getEventId()
{
return eventId;
}
public void setEventId(String eventId)
{
this.eventId = eventId;
}
public List<ActionArgument> getArguments()
{
return arguments;
}
public void setArguments(List<ActionArgument> arguments)
{
this.arguments = arguments;
}
public List<Action> getOnCompleteActions()
{
return onCompleteActions;
}
public void setOnCompleteActions(List<Action> onCompleteActions)
{
this.onCompleteActions = onCompleteActions;
}
@JsonIgnore public String getDoBefore()
{
return doBefore;
}
public void setDoBefore(String doBefore)
{
this.doBefore = doBefore;
}
@JsonIgnore public String getDoAfter()
{
return doAfter;
}
public void setDoAfter(String doAfter)
{
this.doAfter = doAfter;
}
@JsonIgnore public String getDoAfterComplete()
{
return doAfterComplete;
}
public void setDoAfterComplete(String doAfterComplete)
{
this.doAfterComplete = doAfterComplete;
}
}