How can I get @JsonIgnore to work I have a class. And even if I put the annotation there it has no effect on the output. I am using Jackson.
public class Que
I faced this issue in my project and finally I got the solution.
Replace the dependency...
org.codehaus.jackson jackson-jaxrs 1.9.13
Import : com.fasterxml.jackson.annotation.JsonIgnore;
I hope, It will work.