這個bean '國家':什麼時候使用@JsonProperty屬性,它用於什麼?
success : function(response) {
if(response.State.isSet){
alert('success called successfully)
}
這裏需要註釋@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 '成功' 回調線發送?使用它的優點是什麼? 我想我可以刪除這個註釋而不會造成任何副作用。
在https://github.com/FasterXML/jackson-annotations/wiki/Jackson-Annotations上閱讀關於此注意事項我不知道何時需要使用此功能?
wiki.fasterxml.com鏈接斷開 – JohnK