Bu fasulye 'Devlet':
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' geri çağrısı kullanılarak tel üzerinden gönderilir:
success : function(response) {
if(response.State.isSet){
alert('success called successfully)
}
@JsonProperty ek açıklaması burada gerekli mi? Kullanmanın avantajı nedir? Sanırım bu ek açıklamayı herhangi bir yan etkiye neden olmadan kaldırabilirim.
Bu duyuru hakkında okuma https://github.com/FasterXML/jackson-annotations/wiki/Jackson-Annotations adresinde Bunun ne zaman kullanılması gerektiğini bilmiyorum?