| Hello, I have an issue with the validator when I'm using it to validate the JSON I'm receiving from an API (with springboot). In my object, there is one Integer attribute (target_of_impression) and this attribute has the annotation: @Max(value=4). But if I sent {{ { "target_of_impressions": 999999999999 } }} in my API, I get this following issue: {{JSON parse error: Numeric value (999999999999) out of range of int at [Source: java.io.PushbackInputStream@10779221; line: 7, column: 40]; nested exception is com.fasterxml.jackson.databind.JsonMappingException: Numeric value (999999999999) out of range of int at [Source: java.io.PushbackInputStream@10779221; line: 7, column: 40] at [Source: java.io.PushbackInputStream@10779221; line: 7, column: 28] (through reference chain: ife.model.dao.Campaign["target_of_impressions"])}} Do you have an idea to fix this issue? Thanks in advance for your help. Kind Regard Damien |