带Boolean类型的参数的接口用postman测试时传参问题
程序员文章站
2022-07-12 12:58:58
...
代码配置:
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class Test{
private boolean isCommit;
}
postman 测试时传参示范:
{
"isCommit": true --错误示范
"commit": true--正确示范
}