public class JsonUtilsTest {
@Test
public void toJson() throws Exception {
ResourceSupport obj= new ResourceSupport();
JsonStream.serialize(obj);
}
public class ResourceSupport implements Identifiable<Long>, Serializable {
@JsonIgnore
@Override
public Long getId() {
return null;
}
}
public interface Identifiable<ID extends Serializable> {
ID getId();
}
}
Get exception with message: getter name conflict: id
jsoniter version is 0.9.11
Get exception with message:
getter name conflict: idjsoniter version is 0.9.11