Springboot中@RequestParam注解、@PathVariable注解文章收录

1、参考文章1:  SpringBoot - 获取Get请求参数详解(附样例:非空、默认值、数组、对象)               

2、参考文章2:  Springboot中@RequestParam详解   

3、参考文章3:  Springboot中@RequestParam和@PathVariable详解      

4、参考文章4:       

根据实际工作进行总结:

@RequestParam注解中,常用的属性有:required、defaultValue  ;

required 默认值为 true,当其值为 true 时,使用@RequestParam注解的参数名在前端发送的参数中必须存在,哪怕参数值为null,否则会报错。
当值为 false时,前端传递的参数中不存在,也不会报错。

你可能感兴趣的:(Java求学路,Spring,Boot,数据校验,spring,boot,java,后端)