最佳答案
这个豆子“状态”:
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上的这个注释,我不知道什么时候需要使用它?