SpringBoot中同时使用@RequestParam和@RequestBody & 添加枚举校验注解
项目中需要用到url后面拼接参数,post中批量传参的场景所以就有了如下的实现方案:@RequestParam和@RequestBody两个注解同时使用,看到网上有人说尽量不要这么使用,我还没去探究为什么。@DatapublicclassRequest{/***纬度*/@NotNull(message="latitude不能为空")privateDoublelatitude;/***经度*/@No