欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

带Boolean类型的参数的接口用postman测试时传参问题

程序员文章站 2022-07-12 12:58:58
...
代码配置:

@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class Test{

  private boolean isCommit;

}

postman 测试时传参示范:
{
	"isCommit": true --错误示范
        "commit": true--正确示范
        
}