Katia Silva

Results 10 comments of Katia Silva

public class Customer{ private String id; private String name; private List[Address] address;//(with generic list occurs error, without generic list don't occurs error) public String getId(){ return id; } public void...

@dilipkrish Ok, thanks by your attention.

Ok. I tried change the signature to be a List, but occurs the same mistake.

Thanks and sorry by response delay. I was using other version of swagger-spring and this version not have the @ApiModel annotation. I'm changing for this version, but I'm finding some...

@dilipkrish I switched of version and it the problem that I had with object List is resolved. Thanks again.

Hi guys I succeeded hide my id field, I used the annotation @JsonIgnore. But now when I make request http Get this field not return. Can somebody help me?

@dilipkrish Could help me?

@dilipkrish yes, and when I make a request http Get the field not return.

Follows below: Model: public class Customer { private String id; private String name; private String email; public String getId() { return id; } @JSonIgnore public void setId(String id) { this.id...