springboot通過feignClient調用別的服務時,當傳入的參數值為null或者""時會報此錯誤
org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'xxx' is not present
解決辦法,在被調用的接口那里的@RequestParam(value = "xxx")改為@RequestParam(value = "xxx",required = false)即可
注:我用的是Get方式的請求會出現這樣的問題,Post方式的請求我用的@RequestBody接收的參數不會出現此問題
