何时使用@JsonProperty属性,以及它的用途是什么?
这个豆子“状态”:
public class State {
private boolean isSet;
@JsonProperty("isSet")
public boolean isSet() {
return isSet;
}
@JsonProperty("isSet")
public void setSet(boolean isSet) {
this.isSet = isSet;
}
}
使用ajax'success'回调通过网络发送:
success : function(response) {
if(response.State.isSet){
alert('success called successfully)
}
此处是否需要注释@JsonProperty?使用它有什么好处?我认为我可以删除此注释而不会引起任何副作用。
在 https://github.com/FasterXML/jackson-annotations/wiki/Jackson-Annotations 上阅读有关此注释的信息,我不知道何时需要使用?