访问http://localhost:8089/mytest/find?identity_no= ,对identity_no做不能为空校验
实现的效果:捕获异常,前端提示”bad request“,运行后台打印判空的提示
实现方式:在Controller类的方法里增加判空,注意Controller类要加@Validated
@CrossOrigin
@GetMapping(value = "/find")
public Object find(@NotEmpty(message = "identity_no不能为空"